Skip to content

Commit

Permalink
Bump version to 5.0.0 using faker 4.0.0 that removes support for Pyth…
Browse files Browse the repository at this point in the history
…on 2.7
  • Loading branch information
laurentbristiel committed Jan 30, 2020
1 parent 65513a7 commit 557c6f2
Show file tree
Hide file tree
Showing 6 changed files with 75 additions and 59 deletions.
112 changes: 67 additions & 45 deletions CHANGES.rst
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.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
faker==3.0.1
faker==4.0.0
robotframework
wrapt
2 changes: 0 additions & 2 deletions robotframework-faker/FakerLibrary/__init__.py
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

Expand Down
2 changes: 1 addition & 1 deletion robotframework-faker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

__author__ = "Guy Kisel"
__email__ = "[email protected]"
__version__ = "4.3.0"
__version__ = "5.0.0"
6 changes: 1 addition & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 4.3.0
current_version = 5.0.0
commit = True
tag = True

Expand All @@ -9,7 +9,3 @@ description-file = README.md
[bumpversion:file:setup.py]

[bumpversion:file:robotframework-faker/__init__.py]

[wheel]
universal = 1

10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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]",
Expand Down

0 comments on commit 557c6f2

Please sign in to comment.