summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorGene C2024-04-29 18:51:37 -0400
committerGene C2024-04-29 18:51:37 -0400
commit68bc7452a08688502889552e684f635916e037b5 (patch)
tree5e0b6f535871da93b703e464aca01e06c5553d06
parent8aac507855c55896d3b6603b6c6e39536a035e50 (diff)
downloadaur-68bc7452a08688502889552e684f635916e037b5.tar.gz
update project version 6.7.2
-rw-r--r--.SRCINFO4
-rw-r--r--Changelog.rst19
-rw-r--r--PKGBUILD4
3 files changed, 24 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b0ec30ed4e14..811d2f35d432 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = wg_tool
pkgdesc = Tool to administer wireguard VPN (server and user configs)
- pkgver = 6.7.0
+ pkgver = 6.7.2
pkgrel = 1
url = https://github.com/gene-git/wg_tool
changelog = Changelog.rst
@@ -19,7 +19,7 @@ pkgbase = wg_tool
depends = python-qrcode
depends = wireguard-tools
depends = python-tomli
- source = git+https://github.com/gene-git/wg_tool#tag=6.7.0
+ source = git+https://github.com/gene-git/wg_tool#tag=6.7.2
sha512sums = SKIP
pkgname = wg_tool
diff --git a/Changelog.rst b/Changelog.rst
index f54819c59f3c..2075d04d2122 100644
--- a/Changelog.rst
+++ b/Changelog.rst
@@ -1,6 +1,25 @@
Changelog
=========
+**[6.7.2] ----- 2024-04-29** ::
+
+ PKGBUILD change to get latest Changelog
+ update Docs/Changelog.rst Docs/wg_tool.pdf
+
+
+**[6.7.1] ----- 2024-04-29** ::
+
+ Update version.py as our package tooling was updated
+ update Docs/Changelog.rst Docs/wg_tool.pdf
+
+
+**[6.7.0] ----- 2024-04-23** ::
+
+ Adjust for upcoming python changes.
+ Some argparse options have been deprecated in 3.12 and will be removed in 3.14
+ update Docs/Changelog.rst Docs/wg_tool.pdf
+
+
**[6.6.1] ----- 2024-04-17** ::
Package update: "pacman -Qc wg_tool" now shows the Changelog
diff --git a/PKGBUILD b/PKGBUILD
index 88699f748680..dccf13b951c9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -10,7 +10,7 @@ pkgname='wg_tool'
pkgdesc='Tool to administer wireguard VPN (server and user configs)'
_gitname='wg_tool'
-pkgver=6.7.0
+pkgver=6.7.2
pkgrel=1
url="https://github.com/gene-git/wg_tool"
@@ -47,6 +47,8 @@ build() {
package() {
cd "${_gitname}"
+ # pull latest Changelog
+ git pull origin master
cp Docs/Changelog.rst ${startdir}
./scripts/do-install ${pkgdir}
}