Skip to content

Commit

Permalink
Release 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pulpbot committed Jun 19, 2024
1 parent b60062b commit 0a14428
Show file tree
Hide file tree
Showing 13 changed files with 42 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.3.0.dev
current_version = 3.3.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))?
Expand Down
37 changes: 37 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,43 @@

[//]: # (towncrier release notes start)

## 3.3.0 (2024-06-19) {: #3.3.0 }


#### Features {: #3.3.0-feature }

- Added the ``architectures`` and ``components`` parameters to the release API in order to create releases with accompanying architectures and components in a single API call.
Also added retrieve functionality to the release API.
[#1038](https://github.com/pulp/pulp_deb/issues/1038)
- Added support for duplicate source debs. If an source deb already exists, return it instead of raising an exception.
[#1077](https://github.com/pulp/pulp_deb/issues/1077)
- Made the plugin compatible with pulpcore 3.55.0+.
[#1100](https://github.com/pulp/pulp_deb/issues/1100)

#### Bugfixes {: #3.3.0-bugfix }

- Fixed a bug where an ``IntegrityError`` was raised during publish when a source package belonged to
two dists.
[#1053](https://github.com/pulp/pulp_deb/issues/1053)

#### Improved Documentation {: #3.3.0-doc }

- Added initial staging docs.
[#1014](https://github.com/pulp/pulp_deb/issues/1014)

#### Removals {: #3.3.0-removal }

- When creating a release, the API now returns a task instead of the release being created.
In addition, attempting to create a release that already exists will no longer return an error.
Instead the resulting task will simply list the existing content in its ``created_resources`` field.
[#1038](https://github.com/pulp/pulp_deb/issues/1038)
- Dropped support for Python 3.8. pulp_deb now supports Python >=3.9.
[#1039](https://github.com/pulp/pulp_deb/issues/1039)
- When uploading a source deb that already exists, instead of throwing an exception it will now return the existing source package.
[#1077](https://github.com/pulp/pulp_deb/issues/1077)

---

## 3.2.0 (2024-03-04) {: #3.2.0 }

### Features
Expand Down
1 change: 0 additions & 1 deletion CHANGES/1014.doc

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/1038.feature

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGES/1038.removal

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1039.removal

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/1053.bugfix

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1077.removal

This file was deleted.

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

This file was deleted.

4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@
# built documents.
#
# The short X.Y version.
version = "3.3.0.dev"
version = "3.3.0"
# The full version, including alpha/beta/rc tags.
release = "3.3.0.dev"
release = "3.3.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pulp_deb/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ class PulpDebPluginAppConfig(PulpPluginAppConfig):

name = "pulp_deb.app"
label = "deb"
version = "3.3.0.dev"
version = "3.3.0"
python_package_name = "pulp_deb"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="pulp-deb",
version="3.3.0.dev",
version="3.3.0",
description="pulp-deb plugin for the Pulp Project",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 0a14428

Please sign in to comment.