Skip to content

Commit d3144a1

Browse files
authored
Release 4.2.0rc1 (#506)
1 parent 55ec9ef commit d3144a1

File tree

9 files changed

+37
-16
lines changed

9 files changed

+37
-16
lines changed

.travis.yml

+11-9
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,15 @@ jobs:
4343
- docker images
4444
- docker ps -a
4545
- docker logs pulp
46-
deploy:
47-
provider: pypi
48-
distributions: "sdist bdist_wheel"
49-
user: "__token__"
50-
skip_cleanup: true
51-
password:
52-
secure: "mNDI7pqihv+NGCbjb5vKepCp4x+fPjRboQmx1+utaPBgKtofY3Cy7KRSnIcDb5t621+Yb2ufRXk9JGliihHFUUzxVMQjxtIrT8CgbsyXYGFqCQTLp0juCShcU3uCrmn0OB5FZfv1TPmbqrD2iOq1RKx6P6kGEa06ysTelADBi39gdk6l6qfC0o8XBu407KnpOOkx6dR6FjoTmwjN4XsM/UukvBEpAPvgv9eSOJDWR/sEDjpCE2ZMLPSqqM6b01RdkzLOWcDwH56/wXW5IQ3QK4GR63tXcGk6FHw2nfgi1izJhzQWmGD1fpReyxR8EucMOSYzCQSflLiyLCEF/uwnWnFqVDufnElTBCnqMko1qwcoAHwR8fp3xM0WQvGc4krIQjDvKdPpI7vqMrHxX2ZoUG5bDgZEUoYtxlNPBQ8R5GLuupgkLgfh/bORvIxQvmBm8MVGxwO1Ze++9TwTCsxTOTKKEBu3AOtqfdY+IyvYeDPP/Zw37IvGckNGOIyT3KwYgU+L+JGuEHpHkfCBx2oE3NyPN9YAm/6da1ZR1iSeGd980ux0yTGwF8sL4vhUp4lCTsWBqZseztYCsc+QFDUiKMHMQVbftXIwDbtA10SVZlaCrpNHoXNDtWLRo28kqoHFty4+Lzqughqxu27Wf2Eh9MUx9fUcAJA3a/REYyrZjz8="
53-
on:
54-
tags: true
46+
# Commenting this out for now so that we can perform the rc1 release with the new
47+
# build repo
48+
# deploy:
49+
# provider: pypi
50+
# distributions: "sdist bdist_wheel"
51+
# user: "__token__"
52+
# skip_cleanup: true
53+
# password:
54+
# secure: "mNDI7pqihv+NGCbjb5vKepCp4x+fPjRboQmx1+utaPBgKtofY3Cy7KRSnIcDb5t621+Yb2ufRXk9JGliihHFUUzxVMQjxtIrT8CgbsyXYGFqCQTLp0juCShcU3uCrmn0OB5FZfv1TPmbqrD2iOq1RKx6P6kGEa06ysTelADBi39gdk6l6qfC0o8XBu407KnpOOkx6dR6FjoTmwjN4XsM/UukvBEpAPvgv9eSOJDWR/sEDjpCE2ZMLPSqqM6b01RdkzLOWcDwH56/wXW5IQ3QK4GR63tXcGk6FHw2nfgi1izJhzQWmGD1fpReyxR8EucMOSYzCQSflLiyLCEF/uwnWnFqVDufnElTBCnqMko1qwcoAHwR8fp3xM0WQvGc4krIQjDvKdPpI7vqMrHxX2ZoUG5bDgZEUoYtxlNPBQ8R5GLuupgkLgfh/bORvIxQvmBm8MVGxwO1Ze++9TwTCsxTOTKKEBu3AOtqfdY+IyvYeDPP/Zw37IvGckNGOIyT3KwYgU+L+JGuEHpHkfCBx2oE3NyPN9YAm/6da1ZR1iSeGd980ux0yTGwF8sL4vhUp4lCTsWBqZseztYCsc+QFDUiKMHMQVbftXIwDbtA10SVZlaCrpNHoXNDtWLRo28kqoHFty4+Lzqughqxu27Wf2Eh9MUx9fUcAJA3a/REYyrZjz8="
55+
# on:
56+
# tags: true
5557
...

CHANGES.rst

+25
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,31 @@ Changelog
1313

1414
.. towncrier release notes start
1515
16+
4.2.0rc1 (2020-10-02)
17+
=====================
18+
19+
Bugfixes
20+
--------
21+
22+
- Make error return for upload filename parsing errors provides an error code 'invalid'
23+
`#31 <https://github.com/ansible/galaxy_ng/issues/31>`_
24+
- Fixes missing collection documentation after syncing from cloud.redhat.com.
25+
`#441 <https://github.com/ansible/galaxy_ng/issues/441>`_
26+
- Add missing RepositoryVersion to inbound repos created via migration
27+
`#493 <https://github.com/ansible/galaxy_ng/issues/493>`_
28+
- On upload use filename namespace as distro when no distro specified
29+
`#496 <https://github.com/ansible/galaxy_ng/issues/496>`_
30+
31+
32+
Misc
33+
----
34+
35+
- `#390 <https://github.com/ansible/galaxy_ng/issues/390>`_, `#473 <https://github.com/ansible/galaxy_ng/issues/473>`_
36+
37+
38+
----
39+
40+
1641
4.2.0b3 (2020-09-24)
1742
====================
1843

CHANGES/31.bugfix

-1
This file was deleted.

CHANGES/390.misc

-1
This file was deleted.

CHANGES/441.fix

-1
This file was deleted.

CHANGES/473.misc

-1
This file was deleted.

CHANGES/493.bugfix

-1
This file was deleted.

CHANGES/496.bugfix

-1
This file was deleted.

galaxy_ng/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "4.2.0b3"
1+
__version__ = "4.2.0rc1"
22

33
default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig"

0 commit comments

Comments
 (0)