Skip to content

Commit

Permalink
Release 0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
pulpbot committed Feb 19, 2024
1 parent 228e53a commit 8e0140e
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.6.dev
current_version = 0.0.6
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))?
Expand Down
21 changes: 20 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,26 @@

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

## 0.0.5 (2023-09-05)
## 0.0.6 (2024-02-19)



### Features

- Modernized the build process with setuptools to use `pyproject.toml` instead of `setup.py`.



## Pulp GLUE deb


### Features

- The pulp-glue-deb library layer is now available as a separate package.
[#65](https://github.com/pulp/pulp-cli-deb/issues/65)


---## 0.0.5 (2023-09-05)
=====================


Expand Down
1 change: 0 additions & 1 deletion CHANGES/+pyproject_toml.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/pulp-glue-deb/65.feature

This file was deleted.

2 changes: 1 addition & 1 deletion pulpcore/cli/deb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from pulpcore.cli.deb.remote import remote
from pulpcore.cli.deb.repository import repository

__version__ = "0.0.6.dev"
__version__ = "0.0.6"


@pulp_group(name="deb")
Expand Down
4 changes: 2 additions & 2 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-deb"
version = "0.0.6.dev"
version = "0.0.6"
description = "Command line interface to talk to pulpcore's REST API. (Deb plugin commands)"
readme = "README.md"
requires-python = ">=3.6"
Expand All @@ -24,7 +24,7 @@ classifiers=[
]
dependencies = [
"pulp-cli>=0.18.2,<0.24.0.dev",
"pulp-glue-deb==0.0.6.dev",
"pulp-glue-deb==0.0.6",
]

[project.urls]
Expand Down

0 comments on commit 8e0140e

Please sign in to comment.