From be53a6a13e83825528c2be67623c5a1541e1f002 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 Feb 2023 09:55:57 +0000 Subject: [PATCH] chore(main): release 0.6.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 23 +++++++++++++++++++++++ enacrestic/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 26 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 210d290..bcd0522 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.5.1" + ".": "0.6.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e1a2d1a..5e94029 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## [0.6.0](https://github.com/EPFL-ENAC/ENACrestic/compare/v0.5.1...v0.6.0) (2023-02-07) + + +### Features + +* **PyPI:** release package to PyPI as CD ([a963c75](https://github.com/EPFL-ENAC/ENACrestic/commit/a963c75362b40f7941ce5b44d4633c6a711ceafb)), closes [#20](https://github.com/EPFL-ENAC/ENACrestic/issues/20) + + +### Bug Fixes + +* **package:** add missing dependencies ([6f9442a](https://github.com/EPFL-ENAC/ENACrestic/commit/6f9442a06d7129be30caffe9f822752cdd7633b6)), closes [#90](https://github.com/EPFL-ENAC/ENACrestic/issues/90) +* **package:** fix build & fix .desktop file ([e99ec86](https://github.com/EPFL-ENAC/ENACrestic/commit/e99ec863d36b4197bad4bf8c0084a356379deedf)), closes [#20](https://github.com/EPFL-ENAC/ENACrestic/issues/20) +* **release:** fix release-please and release to PyPI workflow ([b377391](https://github.com/EPFL-ENAC/ENACrestic/commit/b377391fc2c39016a40eddc2d144265a5fc8d61e)) +* **restic_backup.py:** fix error handling ([f5bb05b](https://github.com/EPFL-ENAC/ENACrestic/commit/f5bb05bc6e06c6bd76a8da7800f69b856eb0e4ad)), closes [#57](https://github.com/EPFL-ENAC/ENACrestic/issues/57) +* **typo:** fix [#53](https://github.com/EPFL-ENAC/ENACrestic/issues/53) ([34b31d3](https://github.com/EPFL-ENAC/ENACrestic/commit/34b31d3bb67660dd556e0d22bfc8e9bad09e6e8f)) +* **vscode:** fix non-sense config ([c3099cb](https://github.com/EPFL-ENAC/ENACrestic/commit/c3099cb7f5be1d694deff5e81248cff53505ba3c)) + + +### Documentation + +* **for devs:** update how to publish on PyPI (manualy) ([2565808](https://github.com/EPFL-ENAC/ENACrestic/commit/256580870cce0a7848bcb640ba89d50c67bd12cd)) +* **README.md:** add common project badges ([750fc07](https://github.com/EPFL-ENAC/ENACrestic/commit/750fc072298f9e82a567b4a91c3a41096ab6e802)) + ## [0.5.1](https://github.com/EPFL-ENAC/ENACrestic/compare/v0.5.0...v0.5.1) (2022-11-30) diff --git a/enacrestic/__init__.py b/enacrestic/__init__.py index 8883b67..d283b35 100755 --- a/enacrestic/__init__.py +++ b/enacrestic/__init__.py @@ -1,3 +1,3 @@ #!/usr/bin/env python3 -__version__ = "0.5.1" +__version__ = "0.6.0" diff --git a/pyproject.toml b/pyproject.toml index 66feb3e..d0fbb13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "enacrestic" homepage = "https://github.com/EPFL-ENAC/ENACrestic#readme" repository = "https://github.com/EPFL-ENAC/ENACrestic" -version = "0.5.1" +version = "0.6.0" description = "Automate backups using restic" authors = ["Samuel Bancal "] license = "GPLv3"