From f5c2de52e6fba03eca59a8dd87c2ae2d64c82135 Mon Sep 17 00:00:00 2001 From: Skycoder42 Date: Sat, 12 Aug 2023 06:59:30 +0000 Subject: [PATCH] Update podman_backup to version 1.2.1 --- .SRCINFO | 6 +++--- CHANGELOG.md | 18 ++++++++++++++++++ PKGBUILD | 8 ++++---- 3 files changed, 25 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 4e3a15611b04b..f0d5df5a4f317 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = podman_backup pkgdesc = A small dart tool to push regular backups of podman volumes to a remote. - pkgver = 1.1.0 + pkgver = 1.2.1 pkgrel = 1 url = https://github.com/Skycoder42/podman_backup changelog = CHANGELOG.md @@ -15,7 +15,7 @@ pkgbase = podman_backup depends = xz depends = systemd options = !strip - source = podman_backup-1.1.0.tar.gz::https://github.com/Skycoder42/podman_backup/archive/refs/tags/v1.1.0.tar.gz - b2sums = dcbfc8b7c45a26577b377dea2dd1d6de01977b2d417823a6ed1f8b6d50e4e7ce0eaff06c34c069320e0f51fc1d4f80e3663e7ac218a88c1da238d7504c307ace + source = podman_backup-1.2.1.tar.gz::https://github.com/Skycoder42/podman_backup/archive/refs/tags/v1.2.1.tar.gz + b2sums = 109b6ba5d5a9eb46ce05800df2c6c9025b8d37d68ec7528d381337d2e562f7184fcef1530df95eb9d65d60c8f146819d16c837299aad520da6873f9546c2eb02 pkgname = podman_backup diff --git a/CHANGELOG.md b/CHANGELOG.md index 6047f13fa46e4..06a79714d645a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.2.1] - 2023-08-12 +### Fixed +- Fixup AUR release + +## [1.2.0] - 2023-08-12 +### Added +- Support for running alternative backup services + - By setting the backup label to a non empty string, a hook is registered + - Is the name of a systemd unit or template unit + - Automatically escapes volume names when passed to a template + - Can run as preparation or instead of the normal backup + - Backup logic (ordering, container-management, etc.) still applies + +### Changed +- Improve documentation + ## [1.1.0] - 2023-08-04 ### Added - Add support for detecting pods @@ -35,6 +51,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release +[1.2.1]: https://github.com/Skycoder42/podman_backup/compare/v1.2.0...v1.2.1 +[1.2.0]: https://github.com/Skycoder42/podman_backup/compare/v1.1.0...v1.2.0 [1.1.0]: https://github.com/Skycoder42/podman_backup/compare/v1.0.4...v1.1.0 [1.0.4]: https://github.com/Skycoder42/podman_backup/compare/v1.0.3...v1.0.4 [1.0.3]: https://github.com/Skycoder42/podman_backup/compare/v1.0.2...v1.0.3 diff --git a/PKGBUILD b/PKGBUILD index d44f278c53cc4..62047bdf8a0c9 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,16 +1,16 @@ # Maintainer: Skycoder42 pkgname='podman_backup' pkgdesc='A small dart tool to push regular backups of podman volumes to a remote.' -pkgver='1.1.0' +pkgver='1.2.1' pkgrel=1 arch=('x86_64' 'i686' 'armv7h' 'aarch64') url='https://github.com/Skycoder42/podman_backup' license=('BSD') depends=('podman' 'xz' 'systemd') makedepends=('dart>=3.0.0' 'dart<4.0.0') -_pkgdir='podman_backup-1.1.0' -source=("$_pkgdir.tar.gz::https://github.com/Skycoder42/podman_backup/archive/refs/tags/v1.1.0.tar.gz") -b2sums=('dcbfc8b7c45a26577b377dea2dd1d6de01977b2d417823a6ed1f8b6d50e4e7ce0eaff06c34c069320e0f51fc1d4f80e3663e7ac218a88c1da238d7504c307ace') +_pkgdir='podman_backup-1.2.1' +source=("$_pkgdir.tar.gz::https://github.com/Skycoder42/podman_backup/archive/refs/tags/v1.2.1.tar.gz") +b2sums=('109b6ba5d5a9eb46ce05800df2c6c9025b8d37d68ec7528d381337d2e562f7184fcef1530df95eb9d65d60c8f146819d16c837299aad520da6873f9546c2eb02') changelog='CHANGELOG.md' options=('!strip')