From b81e988a34d9b728487e918ebc4055d86afc568e Mon Sep 17 00:00:00 2001 From: Artur Barseghyan Date: Sun, 3 Dec 2023 01:50:07 +0100 Subject: [PATCH] Up 0.3 --- CHANGELOG.rst | 7 +++++++ Makefile | 2 +- fake.py | 2 +- pyproject.toml | 4 ++-- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b4ffd31..59101a4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -16,6 +16,13 @@ are used for versioning (schema follows below): 0.3.4 to 0.4). - All backwards incompatible changes are mentioned in this document. +0.3 +--- +2023-12-03 + +- Added factories. +- Improved documentation. + 0.2 --- 2023-12-01 diff --git a/Makefile b/Makefile index d2ad5d5..e30aeea 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Update version ONLY here -VERSION := 0.2 +VERSION := 0.3 SHELL := /bin/bash # Makefile for project VENV := ~/.virtualenvs/fake.py/bin/activate diff --git a/fake.py b/fake.py index 529c7cb..37eb382 100644 --- a/fake.py +++ b/fake.py @@ -34,7 +34,7 @@ ) __title__ = "fake.py" -__version__ = "0.2" +__version__ = "0.3" __author__ = "Artur Barseghyan " __copyright__ = "2023 Artur Barseghyan" __license__ = "MIT" diff --git a/pyproject.toml b/pyproject.toml index 543cf02..36893ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "fake.py" description = "Minimalistic, standalone alternative fake data generator with no dependencies." readme = "README.rst" -version = "0.2" +version = "0.3" dependencies = [] authors = [ {name = "Artur Barseghyan", email = "artur.barseghyan@gmail.com"}, @@ -134,7 +134,7 @@ ignore-path = [ ] [tool.pytest.ini_options] -minversion = "0.2" +minversion = "0.3" addopts = [ "-ra", "-vvv",