diff --git a/CHANGELOG.md b/CHANGELOG.md index 47eee1d3..d00c8d25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [3.8.31](https://github.com/factorial-io/phabalicious/compare/3.8.30...3.8.31) (2024-08-30) + + +### Features + +* Add option `output` to command `get:sql-dump` to set output file ([9414624](https://github.com/factorial-io/phabalicious/commit/94146244032eb1da5d4be1100c93fe0faf94df33)) + + +### Bug Fixes + +* Delete db backups from local, when restic backup is finished. Fixes [#332](https://github.com/factorial-io/phabalicious/issues/332) ([04c9617](https://github.com/factorial-io/phabalicious/commit/04c96170560c6b9e53776f7d40f56b9ef76a08dc)) + ### [3.8.30](https://github.com/factorial-io/phabalicious/compare/3.8.28...3.8.30) (2024-05-07) diff --git a/package.json b/package.json index 2e771cc5..2d57a797 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "phabalicious", - "version": "3.8.30", + "version": "3.8.31", "main": "index.js", "repository": "https://github.com/factorial-io/phabalicious.git", "author": "Stephan Huber ", diff --git a/src/Utilities/Utilities.php b/src/Utilities/Utilities.php index e2af031c..76b517fd 100644 --- a/src/Utilities/Utilities.php +++ b/src/Utilities/Utilities.php @@ -13,7 +13,7 @@ class Utilities { - const FALLBACK_VERSION = '3.8.30'; + const FALLBACK_VERSION = '3.8.31'; const COMBINED_ARGUMENTS = 'combined'; const UNNAMED_ARGUMENTS = 'unnamedArguments';