Skip to content

Commit

Permalink
Bump version: 1.5.1 → 1.6.0 (#165)
Browse files Browse the repository at this point in the history
* Bump version: 1.5.1 → 1.6.0

Signed-off-by: Callahan Kovacs <[email protected]>
  • Loading branch information
mr-cal authored Oct 6, 2022
1 parent fa5a5e7 commit e2d0802
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 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 = 1.5.1
current_version = 1.6.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion craft_providers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

"""Craft Providers base package."""

__version__ = "1.5.1" # noqa: F401
__version__ = "1.6.0" # noqa: F401

from .base import Base # noqa: F401
from .errors import ProviderError # noqa: F401
Expand Down
12 changes: 12 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@
Changelog
*********

1.6.0 (2022-10-06)
------------------
- Add is_running method to base Executor class
- Add new classes Provider, LXDProvider, and MultipassProvider

Note: The new Provider classes are used to encapsulate LXD and Multipass,
from installing the provider to creating and managing instances. The code
was leveraged from the craft applications (snapcraft, charmcraft, rockcraft,
lpcraft), which implemented similar variations of these Provider classes.
These classes are not stable and are likely to change. They will be stable and
recommended for use in the release of craft-providers 2.0.

1.5.1 (2022-09-29)
------------------
- When injecting a snap, assert the snap's publisher's account
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
author = "Canonical Ltd."

# The full version, including alpha/beta/rc tags
release = "1.5.1"
release = "1.6.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 @@ -72,7 +72,7 @@

setup(
name="craft-providers",
version="1.5.1",
version="1.6.0",
description="Craft provider tooling",
long_description=readme,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit e2d0802

Please sign in to comment.