Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
Merge pull request #229 from goosemania/release_0.3.0
Browse files Browse the repository at this point in the history
Release 0.3.0
  • Loading branch information
goosemania committed Aug 26, 2020
2 parents a263f1d + 47e538a commit ccc2e9f
Show file tree
Hide file tree
Showing 12 changed files with 41 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[bumpversion]
current_version = 0.3.0b1.dev
current_version = 0.4.0.dev
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(0b)?(?P<patch>\d+)(\.(?P<release>[a-z]+))?
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))?
serialize =
{major}.{minor}.0b{patch}.{release}
{major}.{minor}.0b{patch}
{major}.{minor}.{patch}.{release}
{major}.{minor}.{patch}

[bumpversion:part:release]
optional_value = prod
Expand Down
34 changes: 34 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,40 @@ Changelog

.. towncrier release notes start
0.3.0 (2020-08-26)
==================

Features
--------

- Added GroupProgressReport tracking during the migration.
`#6769 <https://pulp.plan.io/issues/6769>`_
- Make the migration plugin compatible with pulp_container 2.0
`#7365 <https://pulp.plan.io/issues/7365>`_


Bugfixes
--------

- Significantly improved performance of partial migrations (when some content / repos has been migrated already).
`#6111 <https://pulp.plan.io/issues/6111>`_
- Fixed migration of a distribution tree if it has a treeinfo and not .treeinfo
`#6951 <https://pulp.plan.io/issues/6951>`_
- Fixed cause of view_name warnings during (re)start of Pulp services.
`#7154 <https://pulp.plan.io/issues/7154>`_
- Marked all Pulp2LCEs as migrated for distribution tree migration.
`#7260 <https://pulp.plan.io/issues/7260>`_


Misc
----

- `#6963 <https://pulp.plan.io/issues/6963>`_


----


0.2.1 (2020-08-26)
==================

Expand Down
1 change: 0 additions & 1 deletion CHANGES/6111.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/6769.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/6951.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/6963.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/7154.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/7260.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/7365.feature

This file was deleted.

2 changes: 1 addition & 1 deletion pulp_2to3_migration/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "0.3.0b1.dev"
__version__ = "0.4.0.dev"

default_app_config = 'pulp_2to3_migration.app.Pulp2To3MigrationPluginAppConfig'
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
django-cursor-pagination
pulpcore>=3.4
pulpcore>=3.6
mongoengine
semantic_version
jsonschema>=3.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='pulp-2to3-migration',
version='0.3.0b1.dev',
version='0.4.0.dev',
description='Pulp 2 to Pulp 3 migration tool',
license='GPLv2+',
author='Pulp Team',
Expand Down

0 comments on commit ccc2e9f

Please sign in to comment.