From 1731b9e8733e8ec205d8ae8d67bc473d33b7d5d0 Mon Sep 17 00:00:00 2001 From: Brent Yorgey Date: Thu, 6 Oct 2022 14:19:00 -0500 Subject: [PATCH] 0.1.0.1 bugfix release Also rename `data.zip` to `swarm-data.zip` --- .github/workflows/haskell-release.yml | 4 ++-- CHANGELOG.md | 15 +++++++++------ README.md | 2 +- swarm.cabal | 2 +- 4 files changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/haskell-release.yml b/.github/workflows/haskell-release.yml index e2a552207..2a25b4a26 100644 --- a/.github/workflows/haskell-release.yml +++ b/.github/workflows/haskell-release.yml @@ -19,7 +19,7 @@ jobs: - name: Zip data directory run: | - zip -r data.zip ./data || { echo "Unable to create a zip archive."; exit 1; } + zip -r swarm-data.zip ./data || { echo "Unable to create a zip archive."; exit 1; } - name: Create Release id: create_release @@ -27,7 +27,7 @@ jobs: with: files: | LICENSE - data.zip + swarm-data.zip - name: Output Release URL File run: echo "${{ steps.create_release.outputs.upload_url }}" > release_url.txt diff --git a/CHANGELOG.md b/CHANGELOG.md index f75a9cec4..e0b17bce3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,17 @@ # Revision history for swarm -## **?.?.?.?** - ????-??-?? +## **0.1.0.1** - 2022-10-06 -A bugfixing release for a few minor bugs that plagued the first release: +A bugfix release for a few minor bugs that plagued the first release: -- fallback to to the swarm data directory when the `run` file is not found - - this caused the move tutorial to be unplayable because it tried to execute +- Fall back to to the swarm data directory when a `run` file is not + found ([#730](https://github.com/swarm-game/swarm/pull/730)) + - This bug caused the move tutorial to be unplayable because it tried to execute `run "data/scenarios/Tutorials/move_system.sw"` - but now it should be fixed - +- Fix version check when there is no GitInfo + ([#729](https://github.com/swarm-game/swarm/pull/729)) + - This bug caused the game to always report that there was a new + version available even when you already had the latest (and only!) version. ## **0.1.0.0** - 2022-10-06 diff --git a/README.md b/README.md index d5c7f8ebb..3f947c6bf 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ You will also need to extract the data to your local Swarm folder so the executable can find it: ```bash mkdir -p ~/.local/share/swarm/ -unzip data.zip -d ~/.local/share/swarm +unzip swarm-data.zip -d ~/.local/share/swarm ``` Installing from Hackage diff --git a/swarm.cabal b/swarm.cabal index 5153f1243..820876178 100644 --- a/swarm.cabal +++ b/swarm.cabal @@ -1,6 +1,6 @@ cabal-version: 2.4 name: swarm -version: 0.1.0.0 +version: 0.1.0.1 synopsis: 2D resource gathering game with programmable robots description: Swarm is a 2D programming and resource gathering