Skip to content

Commit

Permalink
Merge pull request #30 from CCBR/release-0.1.1
Browse files Browse the repository at this point in the history
docs: prepare release v0.1.1
  • Loading branch information
kelly-sovacool authored Nov 6, 2023
2 parents 3ffca54 + b37820f commit 6c576a7
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,15 @@ jobs:
cd tests/
cruise init
cruise run -profile ci_stub -stub
build-status: # https://github.com/orgs/community/discussions/4324#discussioncomment-3477871
runs-on: ubuntu-latest
needs: [build]
if: always()
steps:
- name: Successful build
if: ${{ !(contains(needs.*.result, 'failure')) }}
run: exit 0
- name: Failing build
if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
## development version
## CRUISE 0.1.1

### Bug fixes

- All scripts in the bin directory are now made executable for all users on biowulf (#25).
- Libraries are now copied to the assets directory (#26).
- Data directories are copied recursively during python package installation (#26).

## CRUISE v0.1.0
## CRUISE 0.1.0

This is the first release of CRUISE 🎉

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1-dev.1
0.1.1

0 comments on commit 6c576a7

Please sign in to comment.