From 389c23c797f203762095daa0d100a5d6fa198d45 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Tue, 18 Feb 2025 12:08:58 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version:=203.10.1=20=E2=86=92=203.11.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- doc/conf.py | 2 +- flit/__init__.py | 2 +- flit_core/flit_core/__init__.py | 2 +- pyproject.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a41187a6..a325e861 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.10.1 +current_version = 3.11.0 commit = True tag = False diff --git a/doc/conf.py b/doc/conf.py index 979d26ca..d5dd799d 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -57,7 +57,7 @@ # built documents. # # The short X.Y version. -version = '3.10.1' +version = '3.11.0' # The full version, including alpha/beta/rc tags. release = version #+ '.1' diff --git a/flit/__init__.py b/flit/__init__.py index dc0cc08d..ab2cbeb5 100644 --- a/flit/__init__.py +++ b/flit/__init__.py @@ -12,7 +12,7 @@ from .config import ConfigError from .log import enable_colourful_output -__version__ = '3.10.1' +__version__ = '3.11.0' log = logging.getLogger(__name__) diff --git a/flit_core/flit_core/__init__.py b/flit_core/flit_core/__init__.py index 5f06a84d..a55c04e7 100644 --- a/flit_core/flit_core/__init__.py +++ b/flit_core/flit_core/__init__.py @@ -4,4 +4,4 @@ All the convenient development features live in the main 'flit' package. """ -__version__ = '3.10.1' +__version__ = '3.11.0' diff --git a/pyproject.toml b/pyproject.toml index 6e2e3a14..e7202a19 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ authors = [ {name = "Thomas Kluyver", email = "thomas@kluyver.me.uk"}, ] dependencies = [ - "flit_core >=3.10.1", + "flit_core >=3.11.0", "requests", "docutils", "tomli-w",