Skip to content

Commit 879232c

Browse files
authored
Merge pull request #739 from cderici/release-3.0.2
#739 ## What's Changed * Model name can now be accessed through model.name by @jack-w-shaw in #702 * [JUJU-1593] Fix `unit.run()` and update the old client codes by @cderici in #710 * Add py.typed marker by @sed-i in #709 * [JUJU-1664] Add force, no-wait, destroy-storage params to app.destroy by @cderici in #714 * snapcraft.io access should use https requests by @addyess in #715 * [JUJU-1680] Add issue and PR templates by @cderici in #718 * [JUJU-1681] Add --attach-storage parameter to model.deploy by @cderici in #720 * [JUJU-1706] Allow waiting for `wait_for_exact_units=0` by @cderici in #723 * [JUJU-1663] Drop Python 3.5 support from python-libjuju by @cderici in #722 * [JUJU-1671] Charmhub url from model config by @cderici in #724 * [JUJU-1733] Revisit unitrun example by @cderici in #725 * [JUJU-1800] Revise the `application.upgrade_charm()` (refresh) by @cderici in #729 * [JUJU-1893] Revisit `charmhub.info()` by @cderici in #737 [JUJU-1593]: https://warthogs.atlassian.net/browse/JUJU-1593?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ [JUJU-1664]: https://warthogs.atlassian.net/browse/JUJU-1664?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ [JUJU-1680]: https://warthogs.atlassian.net/browse/JUJU-1680?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ [JUJU-1681]: https://warthogs.atlassian.net/browse/JUJU-1681?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ [JUJU-1706]: https://warthogs.atlassian.net/browse/JUJU-1706?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ [JUJU-1663]: https://warthogs.atlassian.net/browse/JUJU-1663?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ [JUJU-1671]: https://warthogs.atlassian.net/browse/JUJU-1671?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
2 parents 55e79f6 + 4c56c0e commit 879232c

2 files changed

Lines changed: 24 additions & 4 deletions

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.1
1+
3.0.2

docs/changelog.rst

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,40 @@
11
Changelog
22
---------
3+
4+
5+
3.0.2
6+
^^^^^
7+
8+
Wednesday October 5 2022
9+
10+
## What's Changed
11+
12+
* Model name can now be accessed through model.name by @jack-w-shaw in https://github.com/juju/python-libjuju/pull/702
13+
* [JUJU-1593] Fix `unit.run()` and update the old client codes by @cderici in https://github.com/juju/python-libjuju/pull/710
14+
* Add py.typed marker by @sed-i in https://github.com/juju/python-libjuju/pull/709
15+
* [JUJU-1664] Add force, no-wait, destroy-storage params to app.destroy by @cderici in https://github.com/juju/python-libjuju/pull/714
16+
* snapcraft.io access should use https requests by @addyess in https://github.com/juju/python-libjuju/pull/715
17+
* [JUJU-1680] Add issue and PR templates by @cderici in https://github.com/juju/python-libjuju/pull/718
18+
* [JUJU-1681] Add --attach-storage parameter to model.deploy by @cderici in https://github.com/juju/python-libjuju/pull/720
19+
* [JUJU-1706] Allow waiting for `wait_for_exact_units=0` by @cderici in https://github.com/juju/python-libjuju/pull/723
20+
* [JUJU-1663] Drop Python 3.5 support from python-libjuju by @cderici in https://github.com/juju/python-libjuju/pull/722
21+
* [JUJU-1671] Charmhub url from model config by @cderici in https://github.com/juju/python-libjuju/pull/724
22+
* [JUJU-1733] Revisit unitrun example by @cderici in https://github.com/juju/python-libjuju/pull/725
23+
* [JUJU-1800] Revise the `application.upgrade_charm()` (refresh) by @cderici in https://github.com/juju/python-libjuju/pull/729
24+
* [JUJU-1893] Revisit `charmhub.info()` by @cderici in https://github.com/juju/python-libjuju/pull/737
25+
326
3.0.1
427
^^^^^
528

629
Thursday August 11 2022
730

8-
## What's Changed
931
* [JUJU-1593] Fix `run_actions` and facade issues by @cderici in https://github.com/juju/python-libjuju/pull/706
1032

1133
3.0.0
1234
^^^^^
1335

1436
Tuesday August 9 2022
1537

16-
## What's Changed
17-
1838
Switching to semantic versioning. From this release on, at least the major release number matches
1939
the most recent Juju supported. Hence the jump to `3.0.0` since this release supports `Juju 3.0`.
2040
(This also means that `python-libjuju <= 2.9.11` only support up to `Juju 2.x`)

0 commit comments

Comments
 (0)