Skip to content

Commit

Permalink
Release 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pulpbot committed Oct 2, 2024
1 parent 847d9d8 commit 8e4b82d
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 8 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.4.0.dev
current_version = 3.4.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))?
Expand Down
23 changes: 23 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,29 @@

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

## 3.4.0 (2024-10-02) {: #3.4.0 }

#### Features {: #3.4.0-feature }

- Extend publishing at by-hash paths to source files.
[#1059](https://github.com/pulp/pulp_deb/issues/1059)
- Improved performance when creating publications, by creating PublishedArtifacts in bulk, greatly reducing the number of database calls.
[#1147](https://github.com/pulp/pulp_deb/issues/1147)
- Improved performance by prefetching relevant Artifacts and RemoteArtifacts during publishing, reducing the number of database calls.
[#1148](https://github.com/pulp/pulp_deb/issues/1148)

#### Bugfixes {: #3.4.0-bugfix }

- Fixed throwing the wrong error when pointing to an invalid repository with a custom signing service.
[#1122](https://github.com/pulp/pulp_deb/issues/1122)

#### Misc {: #3.4.0-misc }

- Improved the publish task performance by optimizing the database queries used in that task.
[#1115](https://github.com/pulp/pulp_deb/issues/1115)

---

## 3.3.1 (2024-08-06) {: #3.3.1 }

#### Bugfixes {: #3.3.1-bugfix }
Expand Down
1 change: 0 additions & 1 deletion CHANGES/1059.feature

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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.4.0.dev"
version = "3.4.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.4.0.dev",
version="3.4.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 8e4b82d

Please sign in to comment.