Skip to content

Commit

Permalink
Tag 0.6.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshStrobl committed Aug 14, 2020
1 parent 4b4db4b commit 2b02795
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'brisk-menu',
['c'],
version: '0.6.1',
version: '0.6.2',
license: [
'GPL-2.0',
'CC-BY-SA-4.0',
Expand Down
20 changes: 12 additions & 8 deletions mkrelease.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
#!/usr/bin/env bash
set -e

# Script for ikey because he went with meson. *shrug*
VERSION=v$(grep "version:" meson.build | head -n1 | cut -d"'" -f2)
NAME="brisk-menu"
git archive --format tar --prefix ${NAME}-${VERSION}/ --verbose HEAD --output ${NAME}-${VERSION}.tar
xz -9 -f "${NAME}-${VERSION}.tar"

gpg --armor --detach-sign "${NAME}-${VERSION}.tar.xz"
gpg --verify "${NAME}-${VERSION}.tar.xz.asc"
rm -rf build
meson --prefix /usr build
ninja dist -C build

VERSION=$(grep "version:" meson.build | head -n1 | cut -d"'" -f2)
TAR="brisk-menu-${VERSION}.tar.xz"
VTAR="brisk-menu-v${VERSION}.tar.xz"

mv build/meson-dist/$TAR $VTAR

gpg --armor --detach-sign $VTAR
gpg --verify "${VTAR}.asc"
2 changes: 1 addition & 1 deletion subprojects/translations
Submodule translations updated 1 files
+1 −1 meson.build
2 changes: 1 addition & 1 deletion updatePot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

function do_gettext()
{
xgettext --package-name=brisk-menu --package-version=0.6.1 $* --default-domain=brisk-menu --join-existing --from-code=UTF-8 --no-wrap --keyword=_
xgettext --package-name=brisk-menu --package-version=0.6.2 $* --default-domain=brisk-menu --join-existing --from-code=UTF-8 --no-wrap --keyword=_
}

function do_intltool()
Expand Down

0 comments on commit 2b02795

Please sign in to comment.