Skip to content

Commit

Permalink
Release 1.20.0 (#451)
Browse files Browse the repository at this point in the history
* docs: update changelog
* packaging: update bumpversion configuration
* Bump version: 1.19.3 → 1.20.0

Signed-off-by: Claudio Matsuoka <[email protected]>
  • Loading branch information
cmatsuoka authored May 17, 2023
1 parent 4b57abd commit 8b8e2c5
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.19.3
current_version = 1.20.0
commit = True
tag = True

Expand All @@ -8,8 +8,8 @@ search = release = "{current_version}"
replace = release = "{new_version}"

[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"
search = VERSION = "{current_version}"
replace = VERSION = "{new_version}"

[bumpversion:file:craft_parts/__init__.py]
search = __version__ = "{current_version}"
Expand Down
2 changes: 1 addition & 1 deletion craft_parts/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

"""Craft a project from several parts."""

__version__ = "1.19.3"
__version__ = "1.20.0"

from . import plugins
from .actions import Action, ActionProperties, ActionType
Expand Down
10 changes: 10 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
Changelog
*********

1.20.0 (2023-05-15)
-------------------

- Add initial support for dnf-based distros
- Add support for pyproject.toml projects in Python plugin
- Improve interpreter detection in Python plugin
- Fix subdir in pull and build steps
- Tox and packaging updates
- Documentation updates

1.19.3 (2023-04-30)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
author = "Canonical Ltd."

# The full version, including alpha/beta/rc tags
release = "1.19.3"
release = "1.20.0"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

from setuptools import find_packages, setup # type: ignore

VERSION = "1.19.3"
VERSION = "1.20.0"

with open("README.md") as readme_file:
readme = readme_file.read()
Expand Down

0 comments on commit 8b8e2c5

Please sign in to comment.