Skip to content

Commit 367baa3

Browse files
committed
Release 3.13.0
1 parent f622665 commit 367baa3

11 files changed

+33
-15
lines changed

CHANGES.md

+30
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,36 @@
88

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

11+
## 3.13.0 (2025-02-05) {: #3.13.0 }
12+
13+
#### Features {: #3.13.0-feature }
14+
15+
- Added pulpcore 3.70 compatibility
16+
17+
#### Bugfixes {: #3.13.0-bugfix }
18+
19+
- Fixed uploads not supporting packages using metadata spec 2.3
20+
[#682](https://github.com/pulp/pulp_python/issues/682)
21+
- Fixed the `package_types` filter breaking other remote filters.
22+
[#691](https://github.com/pulp/pulp_python/issues/691)
23+
- Fixed package name normalization issue preventing syncing packages with "." or "_" in their names.
24+
[#716](https://github.com/pulp/pulp_python/issues/716)
25+
- Fixed replicate failing on upstream on-demand repositories
26+
[#718](https://github.com/pulp/pulp_python/issues/718)
27+
- Fixed `requires_python` field not being properly set on package upload.
28+
29+
Run the new `pulpcore-manager repair-python-metadata` command with repositories containing affected
30+
packages to repair their metadata.
31+
[#773](https://github.com/pulp/pulp_python/issues/773)
32+
- Fixed the JSONField specification so it doesn't break ruby bindings.
33+
See context [here](https://github.com/pulp/pulp_rpm/issues/3639).
34+
35+
#### Misc {: #3.13.0-misc }
36+
37+
- [#774](https://github.com/pulp/pulp_python/issues/774)
38+
39+
---
40+
1141
## 3.12.5 (2024-10-25) {: #3.12.5 }
1242

1343
#### Bugfixes {: #3.12.5-bugfix }

CHANGES/+fix-any-type.bugfix

-2
This file was deleted.

CHANGES/+pulpcore-3.70.feature

-1
This file was deleted.

CHANGES/682.bugfix

-1
This file was deleted.

CHANGES/691.bugfix

-1
This file was deleted.

CHANGES/716.bugfix

-1
This file was deleted.

CHANGES/718.bugfix

-1
This file was deleted.

CHANGES/773.bugfix

-4
This file was deleted.

CHANGES/774.misc

-1
This file was deleted.

pulp_python/app/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class PulpPythonPluginAppConfig(PulpPluginAppConfig):
1010

1111
name = "pulp_python.app"
1212
label = "python"
13-
version = "3.13.0.dev"
13+
version = "3.13.0"
1414
python_package_name = "pulp-python"
1515
domain_compatible = True
1616

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta'
77

88
[project]
99
name = "pulp-python"
10-
version = "3.13.0.dev"
10+
version = "3.13.0"
1111
description = "pulp-python plugin for the Pulp Project"
1212
readme = "README.md"
1313
authors = [
@@ -77,7 +77,7 @@ ignore = [
7777
[tool.bumpversion]
7878
# This section is managed by the plugin template. Do not edit manually.
7979

80-
current_version = "3.13.0.dev"
80+
current_version = "3.13.0"
8181
commit = false
8282
tag = false
8383
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<alpha>0a)?(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"

0 commit comments

Comments
 (0)