diff --git a/.SRCINFO b/.SRCINFO index e1c68ec3a71cf..2ea55f54ca6f5 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = podman_backup - pkgdesc = A sample command-line application. - pkgver = 1.0.1 + pkgdesc = A small dart tool to push regular backups of podman volumes to a remote. + pkgver = 1.0.2 pkgrel = 1 url = https://github.com/Skycoder42/podman_backup changelog = CHANGELOG.md @@ -9,13 +9,13 @@ pkgbase = podman_backup arch = armv7h arch = aarch64 license = BSD - makedepends = dart>=2.19.0 - makedepends = dart<3.0.0 + makedepends = dart>=3.0.0 + makedepends = dart<4.0.0 depends = podman depends = xz depends = systemd options = !strip - source = podman_backup-1.0.1.tar.gz::https://github.com/Skycoder42/podman_backup/archive/refs/tags/v1.0.1.tar.gz - b2sums = 31e396eee5909cae656e00eb985053e2c54463bf00ec6305412f3e8bae4f712308e5d151478dfd54b79efa9928a5f37622417d97a372a190663d7630d3801a1f + source = podman_backup-1.0.2.tar.gz::https://github.com/Skycoder42/podman_backup/archive/refs/tags/v1.0.2.tar.gz + b2sums = 9b9198aafe3ef7efa38269529321d6cb4924a082c708cb265dcbf499d6b797c8202ca2960834f1938d9001f054f71cb7838e46598962cc565a5a70ff9ee62b59 pkgname = podman_backup diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f626077da098..8931d259b4aeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ 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.0.2] - 2023-06-09 +### Changed +- Update dependencies + ## [1.0.1] - 2023-04-04 ### Added - Add support for AUR releases @@ -19,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release +[1.0.2]: https://github.com/Skycoder42/podman_backup/compare/v1.0.1...v1.0.2 [1.0.1]: https://github.com/Skycoder42/podman_backup/compare/v1.0.0+1...v1.0.1 [1.0.0+1]: https://github.com/Skycoder42/podman_backup/compare/v1.0.0...v1.0.0+1 [1.0.0]: https://github.com/Skycoder42/podman_backup/releases/tag/v1.0.0 \ No newline at end of file diff --git a/PKGBUILD b/PKGBUILD index 0b1a72d8f1f7f..dbd8afcde7fd8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,16 +1,16 @@ # Maintainer: Skycoder42 pkgname='podman_backup' -pkgdesc='A sample command-line application.' -pkgver='1.0.1' +pkgdesc='A small dart tool to push regular backups of podman volumes to a remote.' +pkgver='1.0.2' pkgrel=1 arch=('x86_64' 'i686' 'armv7h' 'aarch64') url='https://github.com/Skycoder42/podman_backup' license=('BSD') depends=('podman' 'xz' 'systemd') -makedepends=('dart>=2.19.0' 'dart<3.0.0') -_pkgdir='podman_backup-1.0.1' -source=("$_pkgdir.tar.gz::https://github.com/Skycoder42/podman_backup/archive/refs/tags/v1.0.1.tar.gz") -b2sums=('31e396eee5909cae656e00eb985053e2c54463bf00ec6305412f3e8bae4f712308e5d151478dfd54b79efa9928a5f37622417d97a372a190663d7630d3801a1f') +makedepends=('dart>=3.0.0' 'dart<4.0.0') +_pkgdir='podman_backup-1.0.2' +source=("$_pkgdir.tar.gz::https://github.com/Skycoder42/podman_backup/archive/refs/tags/v1.0.2.tar.gz") +b2sums=('9b9198aafe3ef7efa38269529321d6cb4924a082c708cb265dcbf499d6b797c8202ca2960834f1938d9001f054f71cb7838e46598962cc565a5a70ff9ee62b59') changelog='CHANGELOG.md' options=('!strip')