Skip to content

Commit 64c04d9

Browse files
committed
Release 3.8.0
1 parent eedf885 commit 64c04d9

File tree

8 files changed

+26
-10
lines changed

8 files changed

+26
-10
lines changed

CHANGES.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,29 @@
88

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

11+
## 3.8.0 (2025-11-04) {: #3.8.0 }
12+
13+
#### Features {: #3.8.0-feature }
14+
15+
- Added autopublish functionality.
16+
Creates a structured APT publication when used.
17+
Cannot be used to create verbatim publications.
18+
[#406](https://github.com/pulp/pulp_deb/issues/406)
19+
- Add support for Alternate Content Sources (ACS)
20+
[#1347](https://github.com/pulp/pulp_deb/issues/1347)
21+
22+
#### Bugfixes {: #3.8.0-bugfix }
23+
24+
- Allow pulp-import-export when domains are enabled.
25+
- Fixed a compatibility bug on source package upload with pulpcore 3.86.
26+
27+
#### Misc {: #3.8.0-misc }
28+
29+
- Terminate gpg-agent after private key import to avoid race condition on cleanup.
30+
[#1332](https://github.com/pulp/pulp_deb/issues/1332)
31+
32+
---
33+
1134
## 3.7.0 (2025-08-20) {: #3.7.0 }
1235

1336
#### Bugfixes {: #3.7.0-bugfix }

CHANGES/+import_export_domain_enable.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/+source_package_upload.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/1332.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/1347.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/406.feature

Lines changed: 0 additions & 3 deletions
This file was deleted.

pulp_deb/app/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ class PulpDebPluginAppConfig(PulpPluginAppConfig):
66

77
name = "pulp_deb.app"
88
label = "deb"
9-
version = "3.8.0.dev"
9+
version = "3.8.0"
1010
python_package_name = "pulp_deb"
1111
domain_compatible = True

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta'
77

88
[project]
99
name = "pulp-deb"
10-
version = "3.8.0.dev"
10+
version = "3.8.0"
1111
description = "pulp-deb plugin for the Pulp Project"
1212
readme = "README.md"
1313
authors = [
@@ -120,7 +120,7 @@ exclude = '''
120120
[tool.bumpversion]
121121
# This section is managed by the plugin template. Do not edit manually.
122122

123-
current_version = "3.8.0.dev"
123+
current_version = "3.8.0"
124124
commit = false
125125
tag = false
126126
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<alpha>0a)?(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"

0 commit comments

Comments
 (0)