Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pulp-glue-npm/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pulp-glue-npm"
version = "0.0.1.dev0"
version = "0.1.0.dev"
description = "Version agnostic glue library to talk to pulpcore's REST API. (Npm plugin)"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion pulp-glue-npm/src/pulp_glue/npm/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.1.dev0"
__version__ = "0.1.0.dev"
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pulp-cli-npm"
version = "0.0.1.dev0"
version = "0.1.0.dev"
description = "Command line interface to talk to pulpcore's REST API. (Npm plugin commands)"
readme = "README.md"
requires-python = ">=3.10"
Expand All @@ -23,7 +23,7 @@ classifiers=[
]
dependencies = [
"pulp-cli>=0.36.0,<0.37",
"pulp-glue-npm==0.0.1.dev0",
"pulp-glue-npm==0.1.0.dev",
]

[project.urls]
Expand Down Expand Up @@ -67,7 +67,7 @@ namespaces = true

[tool.bumpversion]
# This section is managed by the cookiecutter templates.
current_version = "0.0.1.dev0"
current_version = "0.1.0.dev"
commit = false
tag = false
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"
Expand Down
2 changes: 1 addition & 1 deletion src/pulpcore/cli/npm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
translation = get_translation(__package__)
_ = translation.gettext

__version__ = "0.0.1.dev0"
__version__ = "0.1.0.dev"


@pulp_group(name="npm")
Expand Down
Loading