Skip to content

Commit

Permalink
Update NEWS and release script
Browse files Browse the repository at this point in the history
  • Loading branch information
fossfreedom committed Oct 29, 2023
1 parent ed9f7e3 commit 4e3e63c
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
8 changes: 8 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
============
Version 0.9 (budgie-session)
============

Budgie Session forked from gnome-session at v44.0
Both budgie-session and gnome-session are now
co-installable.

============
Version 44.0
============
Expand Down
15 changes: 15 additions & 0 deletions scripts/mkRelease.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -e

rm -rf build
meson --prefix /usr build
ninja dist -C build

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

mv build/meson-dist/$TAR $VTAR

gpg --armor --detach-sign $VTAR
gpg --verify "${VTAR}.asc"

0 comments on commit 4e3e63c

Please sign in to comment.