From 17f22ba4cb5c158b63785c8e441597369dafdb61 Mon Sep 17 00:00:00 2001 From: Flavio Curella Date: Wed, 7 Feb 2024 08:46:01 -0600 Subject: [PATCH] =?UTF-8?q?Bump=20version:=2023.0.0=20=E2=86=92=2023.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- VERSION | 2 +- docs/conf.py | 4 ++-- faker/__init__.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index af3168e1f8..9d3360e1d7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 23.0.0 +current_version = 23.1.0 files = VERSION faker/__init__.py docs/conf.py commit = True tag = True diff --git a/VERSION b/VERSION index 84b76f4d1c..f8aed3e0b7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -23.0.0 +23.1.0 diff --git a/docs/conf.py b/docs/conf.py index a9893d9b88..d540784fff 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,9 +51,9 @@ # built documents. # # The short X.Y version. -version = "23.0.0" +version = "23.1.0" # The full version, including alpha/beta/rc tags. -release = "23.0.0" +release = "23.1.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/faker/__init__.py b/faker/__init__.py index ed47af8dce..e6391eba73 100644 --- a/faker/__init__.py +++ b/faker/__init__.py @@ -2,6 +2,6 @@ from faker.generator import Generator from faker.proxy import Faker -VERSION = "23.0.0" +VERSION = "23.1.0" __all__ = ("Factory", "Generator", "Faker")