Skip to content

Commit

Permalink
Updates to release files
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedilger committed Jan 1, 2024
1 parent eb8a195 commit 99e7952
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 2 deletions.
6 changes: 6 additions & 0 deletions packaging/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@

9. Bundle the files, create SHA256 hashes

files in files/

create changelog.txt like this:

git log --oneline v0.8.2..v0.9.0 > changelog.txt

10. Upload release to github

11. Update the AUR packages
Expand Down
1 change: 1 addition & 0 deletions packaging/files/LICENSE.txt
1 change: 1 addition & 0 deletions packaging/files/README.macos.txt
3 changes: 3 additions & 0 deletions packaging/files/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Gossip is a nostr client for desktop

The newest version, as well as a better README file, is available at https://github.com/mikedilger/gossip
1 change: 1 addition & 0 deletions packaging/files/filter.rhai.example
2 changes: 1 addition & 1 deletion packaging/macos/build_macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export LDFLAGS="-L${HOMEBREW_PREFIX}/lib -Wl,-rpath,${HOMEBREW_PREFIX}/lib${LDFL

cargo build --release --features=lang-cjk

VERSION=$(cat ../../Cargo.toml | grep ^version | awk -F= '{print $2}' | awk -F\" '{print $2}')
VERSION=$(cat ../../gossip-bin/Cargo.toml | grep ^version | awk -F= '{print $2}' | awk -F\" '{print $2}')
set +e
echo $VERSION | grep -s unstable
if [ $? -eq 0 ] ; then
Expand Down
2 changes: 1 addition & 1 deletion packaging/macos/build_macos_intel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export LDFLAGS="-L${HOMEBREW_PREFIX}/lib -Wl,-rpath,${HOMEBREW_PREFIX}/lib${LDFL

cargo build --target=x86_64-apple-darwin --release --features=lang-cjk

VERSION=$(cat ../../Cargo.toml | grep ^version | awk -F= '{print $2}' | awk -F\" '{print $2}')
VERSION=$(cat ../../gossip-bin/Cargo.toml | grep ^version | awk -F= '{print $2}' | awk -F\" '{print $2}')
set +e
echo $VERSION | grep -s unstable
if [ $? -eq 0 ] ; then
Expand Down

0 comments on commit 99e7952

Please sign in to comment.