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",