Skip to content

Commit

Permalink
Up
Browse files Browse the repository at this point in the history
  • Loading branch information
barseghyanartur committed Dec 9, 2023
1 parent 0de0a2b commit b2fc18f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.1
-----
2023-12-10

- Allow to load registered ``Faker`` instance by ``uid`` or ``alias``.
- Improve test coverage.

0.6
---
2023-12-09
Expand All @@ -24,7 +31,6 @@ are used for versioning (schema follows below):
- Improve multiple ``Faker`` instances.
- Add ``generic_file`` provider.


0.5
---
2023-12-08
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Update version ONLY here
VERSION := 0.6
VERSION := 0.6.1
SHELL := /bin/bash
# Makefile for project
VENV := ~/.virtualenvs/fake.py/bin/activate
Expand Down
2 changes: 1 addition & 1 deletion fake.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
)

__title__ = "fake.py"
__version__ = "0.6"
__version__ = "0.6.1"
__author__ = "Artur Barseghyan <artur.barseghyan@gmail.com>"
__copyright__ = "2023 Artur Barseghyan"
__license__ = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "fake.py"
description = "Minimalistic, standalone alternative fake data generator with no dependencies."
readme = "README.rst"
version = "0.6"
version = "0.6.1"
dependencies = []
authors = [
{name = "Artur Barseghyan", email = "artur.barseghyan@gmail.com"},
Expand Down Expand Up @@ -134,7 +134,7 @@ ignore-path = [
]

[tool.pytest.ini_options]
minversion = "0.6"
minversion = "0.6.1"
addopts = [
"-ra",
"-vvv",
Expand Down

0 comments on commit b2fc18f

Please sign in to comment.