-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from guykisel/faker_4_0_0
Bump version to 5.0.0 using faker 4.0.0 removing support for Python 2.7
- Loading branch information
Showing
6 changed files
with
75 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,67 @@ | ||
Changelog for robotframework-faker | ||
=========================== | ||
4.0.1 (2016-12-19) | ||
------------------ | ||
|
||
- Fixed line feeds in CHANGES.rst and setup.py | ||
- Removed unneeded Python 2.6 workarounds in Travis-CI config. | ||
|
||
|
||
4.0.0 (2016-12-19) | ||
------------------ | ||
- fake-factory was renamed to faker. (thanks @funkymonkeymonk) | ||
- Dropped Python 2.6 support since faker no longer supports it. (thanks @funkymonkeymonk) | ||
3.0.0 (2015-02-05) | ||
------------------ | ||
- Use robotframework syntax highlighting in README.rst examples. | ||
(thanks @pekkaklarck) | ||
- Autocast string inputs to their most likely types. Adds wrapt as a dependency. | ||
NOTE: This change breaks some backwards-compatibility. | ||
- Set up static analysis in Travis-CI. | ||
2.0.4 (2014-10-09) | ||
------------------ | ||
- Remove changelog from PyPI long_description, it breaks the rst rendering :( | ||
2.0.3 (2014-10-09) | ||
------------------ | ||
- Fixed example in README. | ||
- Add changelog to PyPI long_description. | ||
2.0.2 (2014-10-09) | ||
------------------ | ||
|
||
- Hotfix: Fix README.rst for PyPI compatibility. | ||
|
||
2.0.1 (2014-10-09) | ||
------------------ | ||
|
||
- Hotfix: Deleted invalid classifier. | ||
2.0.0 (2014-10-09) | ||
------------------ | ||
- Removed autocasting of input variables. This change is backwards | ||
incompatible! Going forward, to input non-string data types to FakerLibrary | ||
keywords, you must format them using RF's syntax for those data types. | ||
For example, the integer 3 would be ${3}. | ||
- Began using zest.releaser for automated packaging and releasing. | ||
- Added pre-commit configuration to ensure PEP-8 compliance. | ||
- Switched README to restructuredtext to improve rendering on PyPI. | ||
Changelog for robotframework-faker | ||
=========================== | ||
|
||
5.0.0 (2020-01-30) | ||
------------------ | ||
|
||
- Dropped Python 2.7 support since faker no longer supports it. | ||
|
||
4.0.1 (2016-12-19) | ||
------------------ | ||
|
||
- Fixed line feeds in CHANGES.rst and setup.py | ||
- Removed unneeded Python 2.6 workarounds in Travis-CI config. | ||
|
||
|
||
4.0.0 (2016-12-19) | ||
------------------ | ||
|
||
- fake-factory was renamed to faker. (thanks @funkymonkeymonk) | ||
- Dropped Python 2.6 support since faker no longer supports it. (thanks @funkymonkeymonk) | ||
|
||
|
||
3.0.0 (2015-02-05) | ||
------------------ | ||
|
||
- Use robotframework syntax highlighting in README.rst examples. | ||
(thanks @pekkaklarck) | ||
- Autocast string inputs to their most likely types. Adds wrapt as a dependency. | ||
NOTE: This change breaks some backwards-compatibility. | ||
- Set up static analysis in Travis-CI. | ||
|
||
|
||
2.0.4 (2014-10-09) | ||
------------------ | ||
|
||
- Remove changelog from PyPI long_description, it breaks the rst rendering :( | ||
|
||
|
||
2.0.3 (2014-10-09) | ||
------------------ | ||
|
||
- Fixed example in README. | ||
- Add changelog to PyPI long_description. | ||
|
||
|
||
2.0.2 (2014-10-09) | ||
------------------ | ||
|
||
- Hotfix: Fix README.rst for PyPI compatibility. | ||
|
||
|
||
2.0.1 (2014-10-09) | ||
------------------ | ||
|
||
- Hotfix: Deleted invalid classifier. | ||
|
||
|
||
2.0.0 (2014-10-09) | ||
------------------ | ||
|
||
- Removed autocasting of input variables. This change is backwards | ||
incompatible! Going forward, to input non-string data types to FakerLibrary | ||
keywords, you must format them using RF's syntax for those data types. | ||
For example, the integer 3 would be ${3}. | ||
- Began using zest.releaser for automated packaging and releasing. | ||
- Added pre-commit configuration to ensure PEP-8 compliance. | ||
- Switched README to restructuredtext to improve rendering on PyPI. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
faker==3.0.1 | ||
faker==4.0.0 | ||
robotframework | ||
wrapt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
from __future__ import absolute_import | ||
|
||
import pkg_resources | ||
from .keywords import FakerKeywords | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
|
||
__author__ = "Guy Kisel" | ||
__email__ = "[email protected]" | ||
__version__ = "4.3.0" | ||
__version__ = "5.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,12 +15,12 @@ | |
License :: OSI Approved :: MIT License | ||
Operating System :: OS Independent | ||
Programming Language :: Python | ||
Programming Language :: Python :: 2 | ||
Programming Language :: Python :: 2.7 | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.3 | ||
Programming Language :: Python :: 3.4 | ||
Programming Language :: Python :: 3 :: Only | ||
Programming Language :: Python :: 3.5 | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Topic :: Software Development :: Testing | ||
Topic :: Software Development :: Quality Assurance | ||
""".strip().splitlines() | ||
|
@@ -29,7 +29,7 @@ | |
name="robotframework-faker", | ||
package_dir={"": "robotframework-faker"}, | ||
packages=["FakerLibrary"], # this must be the same as the name above | ||
version="4.3.0", | ||
version="5.0.0", | ||
description=short_description, | ||
author="Guy Kisel", | ||
author_email="[email protected]", | ||
|