diff --git a/CHANGES.rst b/CHANGES.rst index 2f881233..4e3de931 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,26 @@ Changelog .. towncrier release notes start +0.1.0b2 (2019-09-11) +==================== + + +Improved Documentation +---------------------- + +- Fix the code snippet provided in the example for creating a file content + `#5094 `_ + + +Misc +---- + +- `#4681 `_ + + +---- + + 0.1.0b1 (2019-07-09) ==================== diff --git a/CHANGES/4681.misc b/CHANGES/4681.misc deleted file mode 100644 index 567eb401..00000000 --- a/CHANGES/4681.misc +++ /dev/null @@ -1 +0,0 @@ -Adopting related names on models. diff --git a/CHANGES/5094.doc b/CHANGES/5094.doc deleted file mode 100644 index fc8b8fc7..00000000 --- a/CHANGES/5094.doc +++ /dev/null @@ -1 +0,0 @@ -Fix the code snippet provided in the example for creating a file content diff --git a/pulp_file/__init__.py b/pulp_file/__init__.py index de2eccf8..95cfe989 100644 --- a/pulp_file/__init__.py +++ b/pulp_file/__init__.py @@ -1,3 +1,3 @@ -__version__ = "0.1.0b2.dev" +__version__ = "0.1.0b2" default_app_config = "pulp_file.app.PulpFilePluginAppConfig" diff --git a/setup.py b/setup.py index 56bd6f51..4b673669 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name="pulp-file", - version="0.1.0b2.dev", + version="0.1.0b2", description="File plugin for the Pulp Project", long_description=long_description, license="GPLv2+",