Skip to content

Commit

Permalink
0.1.0.1 bugfix release
Browse files Browse the repository at this point in the history
Also rename `data.zip` to `swarm-data.zip`
  • Loading branch information
byorgey committed Oct 6, 2022
1 parent 49c4405 commit 1731b9e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/haskell-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ 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
uses: softprops/action-gh-release@v1
with:
files: |
LICENSE
data.zip
swarm-data.zip
- name: Output Release URL File
run: echo "${{ steps.create_release.outputs.upload_url }}" > release_url.txt
Expand Down
15 changes: 9 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion swarm.cabal
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 1731b9e

Please sign in to comment.