Skip to content

Commit d804d18

Browse files
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
2 parents 65513a7 + 557c6f2 commit d804d18

File tree

6 files changed

+75
-59
lines changed

6 files changed

+75
-59
lines changed

CHANGES.rst

Lines changed: 67 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,67 @@
1-
Changelog for robotframework-faker
2-
===========================
3-
4.0.1 (2016-12-19)
4-
------------------
5-
6-
- Fixed line feeds in CHANGES.rst and setup.py
7-
- Removed unneeded Python 2.6 workarounds in Travis-CI config.
8-
9-
10-
4.0.0 (2016-12-19)
11-
------------------
12-
- fake-factory was renamed to faker. (thanks @funkymonkeymonk)
13-
- Dropped Python 2.6 support since faker no longer supports it. (thanks @funkymonkeymonk)
14-
3.0.0 (2015-02-05)
15-
------------------
16-
- Use robotframework syntax highlighting in README.rst examples.
17-
(thanks @pekkaklarck)
18-
- Autocast string inputs to their most likely types. Adds wrapt as a dependency.
19-
NOTE: This change breaks some backwards-compatibility.
20-
- Set up static analysis in Travis-CI.
21-
2.0.4 (2014-10-09)
22-
------------------
23-
- Remove changelog from PyPI long_description, it breaks the rst rendering :(
24-
2.0.3 (2014-10-09)
25-
------------------
26-
- Fixed example in README.
27-
- Add changelog to PyPI long_description.
28-
2.0.2 (2014-10-09)
29-
------------------
30-
31-
- Hotfix: Fix README.rst for PyPI compatibility.
32-
33-
2.0.1 (2014-10-09)
34-
------------------
35-
36-
- Hotfix: Deleted invalid classifier.
37-
2.0.0 (2014-10-09)
38-
------------------
39-
- Removed autocasting of input variables. This change is backwards
40-
incompatible! Going forward, to input non-string data types to FakerLibrary
41-
keywords, you must format them using RF's syntax for those data types.
42-
For example, the integer 3 would be ${3}.
43-
- Began using zest.releaser for automated packaging and releasing.
44-
- Added pre-commit configuration to ensure PEP-8 compliance.
45-
- Switched README to restructuredtext to improve rendering on PyPI.
1+
Changelog for robotframework-faker
2+
===========================
3+
4+
5.0.0 (2020-01-30)
5+
------------------
6+
7+
- Dropped Python 2.7 support since faker no longer supports it.
8+
9+
4.0.1 (2016-12-19)
10+
------------------
11+
12+
- Fixed line feeds in CHANGES.rst and setup.py
13+
- Removed unneeded Python 2.6 workarounds in Travis-CI config.
14+
15+
16+
4.0.0 (2016-12-19)
17+
------------------
18+
19+
- fake-factory was renamed to faker. (thanks @funkymonkeymonk)
20+
- Dropped Python 2.6 support since faker no longer supports it. (thanks @funkymonkeymonk)
21+
22+
23+
3.0.0 (2015-02-05)
24+
------------------
25+
26+
- Use robotframework syntax highlighting in README.rst examples.
27+
(thanks @pekkaklarck)
28+
- Autocast string inputs to their most likely types. Adds wrapt as a dependency.
29+
NOTE: This change breaks some backwards-compatibility.
30+
- Set up static analysis in Travis-CI.
31+
32+
33+
2.0.4 (2014-10-09)
34+
------------------
35+
36+
- Remove changelog from PyPI long_description, it breaks the rst rendering :(
37+
38+
39+
2.0.3 (2014-10-09)
40+
------------------
41+
42+
- Fixed example in README.
43+
- Add changelog to PyPI long_description.
44+
45+
46+
2.0.2 (2014-10-09)
47+
------------------
48+
49+
- Hotfix: Fix README.rst for PyPI compatibility.
50+
51+
52+
2.0.1 (2014-10-09)
53+
------------------
54+
55+
- Hotfix: Deleted invalid classifier.
56+
57+
58+
2.0.0 (2014-10-09)
59+
------------------
60+
61+
- Removed autocasting of input variables. This change is backwards
62+
incompatible! Going forward, to input non-string data types to FakerLibrary
63+
keywords, you must format them using RF's syntax for those data types.
64+
For example, the integer 3 would be ${3}.
65+
- Began using zest.releaser for automated packaging and releasing.
66+
- Added pre-commit configuration to ensure PEP-8 compliance.
67+
- Switched README to restructuredtext to improve rendering on PyPI.

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
faker==3.0.1
1+
faker==4.0.0
22
robotframework
33
wrapt

robotframework-faker/FakerLibrary/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import absolute_import
2-
31
import pkg_resources
42
from .keywords import FakerKeywords
53

robotframework-faker/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
__author__ = "Guy Kisel"
55
__email__ = "guy.kisel@gmail.com"
6-
__version__ = "4.3.0"
6+
__version__ = "5.0.0"

setup.cfg

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 4.3.0
2+
current_version = 5.0.0
33
commit = True
44
tag = True
55

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

1111
[bumpversion:file:robotframework-faker/__init__.py]
12-
13-
[wheel]
14-
universal = 1
15-

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
License :: OSI Approved :: MIT License
1616
Operating System :: OS Independent
1717
Programming Language :: Python
18-
Programming Language :: Python :: 2
19-
Programming Language :: Python :: 2.7
2018
Programming Language :: Python :: 3
21-
Programming Language :: Python :: 3.3
22-
Programming Language :: Python :: 3.4
19+
Programming Language :: Python :: 3 :: Only
20+
Programming Language :: Python :: 3.5
2321
Programming Language :: Python :: 3.6
22+
Programming Language :: Python :: 3.7
23+
Programming Language :: Python :: 3.8
2424
Topic :: Software Development :: Testing
2525
Topic :: Software Development :: Quality Assurance
2626
""".strip().splitlines()
@@ -29,7 +29,7 @@
2929
name="robotframework-faker",
3030
package_dir={"": "robotframework-faker"},
3131
packages=["FakerLibrary"], # this must be the same as the name above
32-
version="4.3.0",
32+
version="5.0.0",
3333
description=short_description,
3434
author="Guy Kisel",
3535
author_email="guy.kisel@gmail.com",

0 commit comments

Comments
 (0)