Skip to content

Commit 633f9d0

Browse files
committed
Release 3.11.0.post0
[noissue]
1 parent cbb5bad commit 633f9d0

File tree

8 files changed

+12
-11
lines changed

8 files changed

+12
-11
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.11.0
2+
current_version = 3.11.0.post0
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))?

.ci/scripts/docs-builder.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ def main():
101101
r = requests.get("https://pypi.org/pypi/pulpcore/json")
102102
latest_version = version.parse(json.loads(r.text)["info"]["version"])
103103
docs_version = version.parse(branch)
104+
publish_at_root = True
104105
if latest_version == docs_version:
105106
publish_at_root = True
106107
# Post releases should use the x.y.z part of the version string to form a path

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
jobs:
1818

1919
lint:
20-
runs-on: ubuntu-latest
20+
runs-on: ubuntu-18.04
2121

2222
steps:
2323
- uses: actions/checkout@v2
@@ -60,7 +60,7 @@ jobs:
6060
run: sh .ci/scripts/check_gettext.sh
6161

6262
test:
63-
runs-on: ubuntu-latest
63+
runs-on: ubuntu-18.04
6464
# run only after lint finishes
6565
needs: lint
6666
strategy:

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
jobs:
1616
test:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-18.04
1818

1919
strategy:
2020
fail-fast: false
@@ -73,7 +73,7 @@ jobs:
7373
shell: bash
7474

7575
publish:
76-
runs-on: ubuntu-latest
76+
runs-on: ubuntu-18.04
7777
needs: test
7878

7979
env:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
test:
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-18.04
1717

1818
strategy:
1919
fail-fast: false
@@ -72,7 +72,7 @@ jobs:
7272
shell: bash
7373

7474
publish:
75-
runs-on: ubuntu-latest
75+
runs-on: ubuntu-18.04
7676
needs: test
7777

7878
env:

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@
6262
# built documents.
6363
#
6464
# The short X.Y version.
65-
version = "3.11.0"
65+
version = "3.11.0.post0"
6666
# The full version, including alpha/beta/rc tags.
67-
release = "3.11.0"
67+
release = "3.11.0.post0"
6868

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

pulpcore/app/apps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ class PulpAppConfig(PulpPluginAppConfig):
183183
label = "core"
184184

185185
# The version of this app
186-
version = "3.11.0"
186+
version = "3.11.0.post0"
187187

188188
def ready(self):
189189
super().ready()

setup.py

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

1212
setup(
1313
name="pulpcore",
14-
version="3.11.0",
14+
version="3.11.0.post0",
1515
description="Pulp Django Application and Related Modules",
1616
long_description=long_description,
1717
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)