Skip to content

Commit 37414d4

Browse files
committed
Release 3.10.1
1 parent ad15002 commit 37414d4

File tree

9 files changed

+20
-9
lines changed

9 files changed

+20
-9
lines changed

CHANGES.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,23 @@ Changelog
1313

1414
.. towncrier release notes start
1515
16+
3.10.1 (2025-07-23)
17+
18+
#### Bugfixes {: #3.10.1-bugfix }
19+
20+
- Fixed tls_validation not being disabled when set to false on the remote.
21+
`#653 <https://github.com/pulp/pulp_python/issues/653>`__
22+
- Fixed uploads not supporting packages using metadata spec 2.3
23+
`#682 <https://github.com/pulp/pulp_python/issues/682>`__
24+
- Fixed the `package_types` filter breaking other remote filters.
25+
`#691 <https://github.com/pulp/pulp_python/issues/691>`__
26+
- Fixed package name normalization issue preventing syncing packages with "." or "_" in their names.
27+
`#716 <https://github.com/pulp/pulp_python/issues/716>`__
28+
- Fixed the JSONField specification so it doesn't break ruby bindings.
29+
See context [here](https://github.com/pulp/pulp_rpm/issues/3639).
30+
31+
---
32+
1633
3.10.0 (2023-05-17)
1734
===================
1835

CHANGES/+fix-any-type.bugfix

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

CHANGES/653.bugfix

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

CHANGES/682.bugfix

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

CHANGES/691.bugfix

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

CHANGES/716.bugfix

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

pulp_python/app/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ class PulpPythonPluginAppConfig(PulpPluginAppConfig):
88

99
name = "pulp_python.app"
1010
label = "python"
11-
version = "3.10.1.dev"
11+
version = "3.10.1"
1212
python_package_name = "pulp-python"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ ignore = [
2929
[tool.bumpversion]
3030
# This section is managed by the plugin template. Do not edit manually.
3131

32-
current_version = "3.10.1.dev"
32+
current_version = "3.10.1"
3333
commit = false
3434
tag = false
3535
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<alpha>0a)?(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name="pulp-python",
13-
version="3.10.1.dev",
13+
version="3.10.1",
1414
description="pulp-python plugin for the Pulp Project",
1515
long_description=long_description,
1616
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)