From 942c3c302dec2601af6f586b3531e61619be2aa0 Mon Sep 17 00:00:00 2001 From: Callahan Date: Wed, 19 Apr 2023 16:45:48 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.10.0=20=E2=86=92=201.11.0?= =?UTF-8?q?=20(#258)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- craft_providers/__init__.py | 2 +- docs/changelog.rst | 10 ++++++++++ docs/conf.py | 2 +- setup.py | 2 +- 5 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0b22a872..be0c27bb 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.10.0 +current_version = 1.11.0 commit = True tag = True diff --git a/craft_providers/__init__.py b/craft_providers/__init__.py index 90c48c85..d2e3a487 100644 --- a/craft_providers/__init__.py +++ b/craft_providers/__init__.py @@ -17,7 +17,7 @@ """Craft Providers base package.""" -__version__ = "1.10.0" +__version__ = "1.11.0" from .base import Base from .errors import ProviderError diff --git a/docs/changelog.rst b/docs/changelog.rst index b920fd8d..4cc895e6 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,16 @@ Changelog ********* +1.11.0 (2023-04-19) +------------------- +- Move Snap pydantic model from `bases.buildd` to `actions.snap_installer` +- Rename `bases.buildd` module to `bases.ubuntu` +- Determine base alias from base configuration in `provider.launched_environment()` +- Add new functions `get_base_alias()` and `get_base_from_alias()` +- Add CentOS 7 base +- Add default for `launched_environment()` parameter `allow_unstable=False` +- Trim suffixes from snap names when installing snaps. + 1.10.0 (2023-03-31) ------------------- - Add support for kinetic, lunar, and devel images with Multipass diff --git a/docs/conf.py b/docs/conf.py index 55003efd..0a4028df 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -40,7 +40,7 @@ author = "Canonical Ltd." # The full version, including alpha/beta/rc tags -release = "1.10.0" +release = "1.11.0" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 12cd873c..41347435 100644 --- a/setup.py +++ b/setup.py @@ -73,7 +73,7 @@ setup( name="craft-providers", - version="1.10.0", + version="1.11.0", description="Craft provider tooling", long_description=readme, long_description_content_type="text/markdown",