Skip to content

Commit

Permalink
Release 3.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pulpbot committed Feb 5, 2025
1 parent f622665 commit 367baa3
Show file tree
Hide file tree
Showing 11 changed files with 33 additions and 15 deletions.
30 changes: 30 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,36 @@

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

## 3.13.0 (2025-02-05) {: #3.13.0 }

#### Features {: #3.13.0-feature }

- Added pulpcore 3.70 compatibility

#### Bugfixes {: #3.13.0-bugfix }

- Fixed uploads not supporting packages using metadata spec 2.3
[#682](https://github.com/pulp/pulp_python/issues/682)
- Fixed the `package_types` filter breaking other remote filters.
[#691](https://github.com/pulp/pulp_python/issues/691)
- Fixed package name normalization issue preventing syncing packages with "." or "_" in their names.
[#716](https://github.com/pulp/pulp_python/issues/716)
- Fixed replicate failing on upstream on-demand repositories
[#718](https://github.com/pulp/pulp_python/issues/718)
- Fixed `requires_python` field not being properly set on package upload.

Run the new `pulpcore-manager repair-python-metadata` command with repositories containing affected
packages to repair their metadata.
[#773](https://github.com/pulp/pulp_python/issues/773)
- Fixed the JSONField specification so it doesn't break ruby bindings.
See context [here](https://github.com/pulp/pulp_rpm/issues/3639).

#### Misc {: #3.13.0-misc }

- [#774](https://github.com/pulp/pulp_python/issues/774)

---

## 3.12.5 (2024-10-25) {: #3.12.5 }

#### Bugfixes {: #3.12.5-bugfix }
Expand Down
2 changes: 0 additions & 2 deletions CHANGES/+fix-any-type.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/+pulpcore-3.70.feature

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

4 changes: 0 additions & 4 deletions CHANGES/773.bugfix

This file was deleted.

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

This file was deleted.

2 changes: 1 addition & 1 deletion pulp_python/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class PulpPythonPluginAppConfig(PulpPluginAppConfig):

name = "pulp_python.app"
label = "python"
version = "3.13.0.dev"
version = "3.13.0"
python_package_name = "pulp-python"
domain_compatible = True

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta'

[project]
name = "pulp-python"
version = "3.13.0.dev"
version = "3.13.0"
description = "pulp-python plugin for the Pulp Project"
readme = "README.md"
authors = [
Expand Down Expand Up @@ -77,7 +77,7 @@ ignore = [
[tool.bumpversion]
# This section is managed by the plugin template. Do not edit manually.

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

0 comments on commit 367baa3

Please sign in to comment.