Skip to content

Commit

Permalink
Bump version: 1.6.2 → 1.7.0 (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-cal authored Jan 11, 2023
1 parent 90699b1 commit 186fee6
Show file tree
Hide file tree
Showing 5 changed files with 19 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.6.2
current_version = 1.7.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.6.2" # noqa: F401
__version__ = "1.7.0" # noqa: F401

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

1.7.0 (2023-01-11)
------------------
- LXD instances launch from a cached base instance rather than a base image.
This reduces disk usage and launch time.
- For the LXD launch function `launched_environment`, the parameter `use_snapshots`
has been replaced by `use_base_instance`. `use_snapshots` still works but logs
a deprecation notice.
- Expire and recreate base instances older than 3 months (90 days)
- Add `lxc.copy()` method to copy instances
- Check for network connectivity after network-related commands fail
- Add documentation for network connectivity issues inside instances
- Enable testing for Ubuntu 22.04 images
- Update `MultipassInstance.push_file_io()` to work regardless of the
host's working directory

1.6.2 (2022-12-08)
------------------
- Disable automatic snap refreshes inside instances.
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.6.2"
release = "1.7.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 @@ -73,7 +73,7 @@

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

0 comments on commit 186fee6

Please sign in to comment.