Skip to content

Commit c93b33d

Browse files
authored
Merge pull request #281 from gerrod3/release-prep
Prepration for new release
2 parents 78af772 + c9065f0 commit c93b33d

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

.bumpversion.cfg

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[bumpversion]
2+
current_version = 3.0.0b9.dev
3+
commit = False
4+
tag = False
5+
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(0b)?(?P<patch>\d+)(\.(?P<release>[a-z]+))?
6+
serialize =
7+
{major}.{minor}.0b{patch}.{release}
8+
{major}.{minor}.0b{patch}
9+
10+
[bumpversion:part:release]
11+
optional_value = prod
12+
first_value = dev
13+
values =
14+
dev
15+
prod
16+
17+
[bumpversion:file:./pulp_python/__init__.py]
18+
19+
[bumpversion:file:./setup.py]

pulp_python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '3.0.0b8'
1+
__version__ = '3.0.0b9.dev'
22

33
default_app_config = 'pulp_python.app.PulpPythonPluginAppConfig'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup, find_packages
44

55
requirements = [
6-
'pulpcore~=3.0',
6+
'pulpcore>=3.4',
77
'pkginfo',
88
'packaging',
99
]
@@ -13,7 +13,7 @@
1313

1414
setup(
1515
name='pulp-python',
16-
version='3.0.0b8',
16+
version='3.0.0b9.dev',
1717
description='pulp-python plugin for the Pulp Project',
1818
long_description=long_description,
1919
license='GPLv2+',

0 commit comments

Comments
 (0)