From 554d1aa1ce75ff26cf36e35fa9aafb9f03d1e5f4 Mon Sep 17 00:00:00 2001 From: Flavio Curella Date: Wed, 26 Jun 2024 16:17:07 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=2025.9.2=20=E2=86=92=2026.0.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 b66e0e8c2d..99e8e99391 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 25.9.2 +current_version = 26.0.0 files = VERSION faker/__init__.py docs/conf.py commit = True tag = True diff --git a/VERSION b/VERSION index e10b0100e4..1e212a919f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -25.9.2 +26.0.0 diff --git a/docs/conf.py b/docs/conf.py index 9be3eda40e..9f267530bc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,9 +51,9 @@ # built documents. # # The short X.Y version. -version = "25.9.2" +version = "26.0.0" # The full version, including alpha/beta/rc tags. -release = "25.9.2" +release = "26.0.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 b2778fdf51..f238d09934 100644 --- a/faker/__init__.py +++ b/faker/__init__.py @@ -2,6 +2,6 @@ from faker.generator import Generator from faker.proxy import Faker -VERSION = "25.9.2" +VERSION = "26.0.0" __all__ = ("Factory", "Generator", "Faker")