From d9bc49d8b826a49662e97fe2d0784a851449f459 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 30 Nov 2022 16:31:35 +0000 Subject: [PATCH] chore(main): release 0.5.1 --- .release-please-manifest.json | 4 ++-- CHANGELOG.md | 7 +++++++ package-lock.json | 4 ++-- package.json | 2 +- pyproject.toml | 2 +- src/enacrestic/__init__.py | 2 +- 6 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8934af7..fc06d0d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - ".": "0.5.0", - "src": "0.5.0" + ".": "0.5.1", + "src": "0.5.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e1518b9..e1a2d1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.5.1](https://github.com/EPFL-ENAC/ENACrestic/compare/v0.5.0...v0.5.1) (2022-11-30) + + +### Bug Fixes + +* **pidfile:** fix to run on server ([4eebd69](https://github.com/EPFL-ENAC/ENACrestic/commit/4eebd69c8f58d0a3a11e17a9178db2c6049e504c)), closes [#51](https://github.com/EPFL-ENAC/ENACrestic/issues/51) + ## [0.5.0](https://github.com/EPFL-ENAC/ENACrestic/compare/v0.4.0...v0.5.0) (2022-11-29) diff --git a/package-lock.json b/package-lock.json index 6b14d44..c0becb0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "@commitlint/config-conventional": "^17.1.0", "husky": "^8.0.1" }, - "version": "0.5.0" + "version": "0.5.1" }, "node_modules/@babel/code-frame": { "version": "7.18.6", @@ -3694,5 +3694,5 @@ "dev": true } }, - "version": "0.5.0" + "version": "0.5.1" } diff --git a/package.json b/package.json index 0ff9988..9b2e08b 100644 --- a/package.json +++ b/package.json @@ -7,5 +7,5 @@ "scripts": { "prepare": "husky install" }, - "version": "0.5.0" + "version": "0.5.1" } diff --git a/pyproject.toml b/pyproject.toml index 0509c45..f10cc29 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "enacrestic" -version = "0.5.0" +version = "0.5.1" description = "Automate backups using restic" authors = ["Samuel Bancal "] license = "GPLv3" diff --git a/src/enacrestic/__init__.py b/src/enacrestic/__init__.py index 24b3fae..8883b67 100755 --- a/src/enacrestic/__init__.py +++ b/src/enacrestic/__init__.py @@ -1,3 +1,3 @@ #!/usr/bin/env python3 -__version__ = "0.5.0" +__version__ = "0.5.1"