diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b9e8cf66..18d3975e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -29,6 +29,7 @@ are used for versioning (schema follows below): 0.17.9 ------ +2023-10-10 - Improvements and fixes in the documentation. - Announcing feature plans to change default PDF and Image generators diff --git a/setup.py b/setup.py index 2e878b10..cf823c56 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup -version = "0.17.8" +version = "0.17.9" try: readme = open(os.path.join(os.path.dirname(__file__), "README.rst")).read() @@ -28,6 +28,7 @@ "pytest-ordering", # pytest add-on "pytest-pythonpath", # pytest add-on "pytest-rst", # pytest add-on + "moto", # testing documentation ] _common = [ diff --git a/src/faker_file/__init__.py b/src/faker_file/__init__.py index 6bdc6e11..025eed84 100644 --- a/src/faker_file/__init__.py +++ b/src/faker_file/__init__.py @@ -1,5 +1,5 @@ __title__ = "faker_file" -__version__ = "0.17.8" +__version__ = "0.17.9" __author__ = "Artur Barseghyan " __copyright__ = "2022-2023 Artur Barseghyan" __license__ = "MIT"