Skip to content

Commit 51a2ff8

Browse files
authored
Merge pull request #337 from gerrod3/release_3.1.0
Release 3.1.0
2 parents 468d553 + 27637b3 commit 51a2ff8

File tree

7 files changed

+26
-7
lines changed

7 files changed

+26
-7
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.1.0.dev
2+
current_version = 3.2.0.dev
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))?

CHANGES.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,27 @@ Changelog
1313

1414
.. towncrier release notes start
1515
16+
3.1.0 (2021-03-12)
17+
==================
18+
19+
20+
Features
21+
--------
22+
23+
- Python content can now be filtered by requires_python
24+
`#3629 <https://pulp.plan.io/issues/3629>`_
25+
26+
27+
Improved Documentation
28+
----------------------
29+
30+
- Updated workflows to use Pulp CLI commands
31+
`#8364 <https://pulp.plan.io/issues/8364>`_
32+
33+
34+
----
35+
36+
1637
3.0.0 (2021-01-12)
1738
==================
1839

CHANGES/3629.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/8364.doc

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@
5656
# built documents.
5757
#
5858
# The short X.Y version.
59-
version = "3.1.0.dev"
59+
version = "3.2.0.dev"
6060
# The full version, including alpha/beta/rc tags.
61-
release = "3.1.0.dev"
61+
release = "3.2.0.dev"
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.

pulp_python/app/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ class PulpPythonPluginAppConfig(PulpPluginAppConfig):
88

99
name = "pulp_python.app"
1010
label = "python"
11-
version = "3.1.0.dev"
11+
version = "3.2.0.dev"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name="pulp-python",
13-
version="3.1.0.dev",
13+
version="3.2.0.dev",
1414
description="pulp-python plugin for the Pulp Project",
1515
long_description=long_description,
1616
license="GPLv2+",

0 commit comments

Comments
 (0)