summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonny Stoten2022-03-31 17:19:06 +0100
committerJonny Stoten2022-03-31 17:19:06 +0100
commite3fd00bbf7b83d594446cfab80e2641dfe937f4c (patch)
tree42bbc98aeaef13410981cf21492d474f0b541821
parent63019c183009325f6036aa6d0a2d293d3ebfb70f (diff)
downloadaur-e3fd00bbf7b83d594446cfab80e2641dfe937f4c.tar.gz
Release of 1.8.3
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD4
-rwxr-xr-xrelease.fish8
3 files changed, 9 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 4cfc078f01c9..6b12c5544fdc 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,12 @@
pkgbase = stripe-cli-bin
pkgdesc = A command-line tool for Stripe
- pkgver = 1.8.2
+ pkgver = 1.8.3
pkgrel = 1
url = https://stripe.com/docs/stripe-cli
arch = x86_64
license = Apache
conflicts = stripe-cli
- source = https://github.com/stripe/stripe-cli/releases/download/v1.8.2/stripe_1.8.2_linux_x86_64.tar.gz
- sha256sums = ffecd05a09753c8df3ecea868daac12482ee42653c0c0bb683ce246e11e6e37b
+ source = https://github.com/stripe/stripe-cli/releases/download/v1.8.3/stripe_1.8.3_linux_x86_64.tar.gz
+ sha256sums = 308551f35fead5cf0c2454189d770deea9dc5ce40de595f3908ffe9b048aa6cb
pkgname = stripe-cli-bin
diff --git a/PKGBUILD b/PKGBUILD
index 32238a712c3d..52452135f18e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Jonny Stoten <jonny@jonnystoten.com>
pkgname=stripe-cli-bin
-pkgver=1.8.2
+pkgver=1.8.3
pkgrel=1
pkgdesc="A command-line tool for Stripe"
arch=("x86_64")
@@ -11,7 +11,7 @@ depends=()
provides=()
conflicts=(stripe-cli)
source=("https://github.com/stripe/stripe-cli/releases/download/v$pkgver/stripe_${pkgver}_linux_x86_64.tar.gz")
-sha256sums=('ffecd05a09753c8df3ecea868daac12482ee42653c0c0bb683ce246e11e6e37b')
+sha256sums=('308551f35fead5cf0c2454189d770deea9dc5ce40de595f3908ffe9b048aa6cb')
package() {
install -Dm 0755 stripe "$pkgdir/usr/bin/stripe"
diff --git a/release.fish b/release.fish
index 43ad77094c4f..b161e46b1969 100755
--- a/release.fish
+++ b/release.fish
@@ -16,17 +16,17 @@ makepkg -i; or exit
echo "Generating .SRCINFO..."
makepkg --printsrcinfo >.SRCINFO
-echo "Committing to git..."
-git commit -am "Release of $stripe_cli_version"
-
echo "Testing that the new version works with stripe -v..."
if not stripe -v
echo "Failed to run stripe!"
exit 1
end
-read -p 'echo "Ready to push? [Y/n] "' ok
+read -p 'echo "Ready to commit/push? [Y/n] "' ok
if test $ok = "y" -o $ok = ""
+ echo "Committing to git..."
+ git commit -am "Release of $stripe_cli_version"
+
echo "Pushing..."
git push origin master
git push aur master