Skip to content

Commit 1c81417

Browse files
authored
Merge pull request #737 from pypa/changelog-3.12
Prepare to release 3.12
2 parents 7a6e9b2 + d9ce4c6 commit 1c81417

File tree

6 files changed

+14
-5
lines changed

6 files changed

+14
-5
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.11.0
2+
current_version = 3.12.0
33
commit = True
44
tag = False
55

doc/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
# built documents.
5858
#
5959
# The short X.Y version.
60-
version = '3.11.0'
60+
version = '3.12.0'
6161
# The full version, including alpha/beta/rc tags.
6262
release = version #+ '.1'
6363

doc/history.rst

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Release history
22
===============
33

4+
Version 3.12
5+
------------
6+
7+
- Support for license expressions using the AND and OR operators (:ghpull:`731`).
8+
- Recognise ``__version__: str = "0.1"`` annotated assignments when finding the
9+
version number (:ghpull:`728`).
10+
- Clear error message when referring to a license file in a parent directory,
11+
which is not supported (:ghpull:`725`).
12+
413
Version 3.11
514
------------
615

flit/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from .config import ConfigError
1313
from .log import enable_colourful_output
1414

15-
__version__ = '3.11.0'
15+
__version__ = '3.12.0'
1616

1717
log = logging.getLogger(__name__)
1818

flit_core/flit_core/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
All the convenient development features live in the main 'flit' package.
55
"""
66

7-
__version__ = '3.11.0'
7+
__version__ = '3.12.0'

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = [
88
{name = "Thomas Kluyver", email = "[email protected]"},
99
]
1010
dependencies = [
11-
"flit_core >=3.11.0",
11+
"flit_core >=3.12.0",
1212
"requests",
1313
"docutils",
1414
"tomli-w",

0 commit comments

Comments
 (0)