Skip to content

Commit 5530003

Browse files
committed
Release 0.5.0
1 parent 0febe76 commit 5530003

File tree

6 files changed

+17
-6
lines changed

6 files changed

+17
-6
lines changed

CHANGES.md

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

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

11+
## 0.5.0 (2026-01-12) {: #0.5.0 }
12+
13+
#### Features {: #0.5.0-feature }
14+
15+
- Bump pulpcore upperbound to <3.115.
16+
- Taught synchronize task to return full serialized object of their action.
17+
18+
#### Bugfixes {: #0.5.0-bugfix }
19+
20+
- Addressed the deprecation warning of non-serializable task results.
21+
[#354](https://github.com/pulp/pulp_npm/issues/354)
22+
23+
---
24+
1125
## 0.4.0 (2025-08-14) {: #0.4.0 }
1226

1327
#### Bugfixes {: #0.4.0-bugfix }

CHANGES/+fix-task-result.feature

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

CHANGES/+pulpcore_3_100.feature

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

CHANGES/354.bugfix

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

pulp_npm/app/__init__.py

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

77
name = "pulp_npm.app"
88
label = "npm"
9-
version = "0.5.0.dev"
9+
version = "0.5.0"
1010
python_package_name = "pulp-npm"
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-npm"
10-
version = "0.5.0.dev"
10+
version = "0.5.0"
1111
description = "pulp-npm plugin for the Pulp Project"
1212
readme = "README.md"
1313
authors = [
@@ -87,7 +87,7 @@ exclude = '''
8787
[tool.bumpversion]
8888
# This section is managed by the plugin template. Do not edit manually.
8989

90-
current_version = "0.5.0.dev"
90+
current_version = "0.5.0"
9191
commit = false
9292
tag = false
9393
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<alpha>0a)?(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"

0 commit comments

Comments
 (0)