Skip to content

Commit

Permalink
Prepare the 0.3.8 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois committed Nov 22, 2022
1 parent 8bc4f4f commit 54c7520
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,18 @@ jobs:
shell: bash
run: |
python -mvenv .tox.venv
.tox.venv/bin/python -mpip install -U pip
.tox.venv/bin/pip install \
'tox==${{ steps.calculate-tox-version.outputs.tox-min-version }}'
if [[ "$(uname -s)" =~ _NT ]]; then
# Git bash reports something like: MINGW64_NT-10.0-22621
source .tox.venv/Scripts/activate
else
source .tox.venv/bin/activate
fi
python -mpip install -U pip
pip install 'tox==${{ steps.calculate-tox-version.outputs.tox-min-version }}'
cat <<EOF > .changelog-snippet
---
$(.tox.venv/bin/tox -echangelog -qq -- ${{ needs.determine-tag.outputs.release-version }})
$(tox -echangelog -qq -- ${{ needs.determine-tag.outputs.release-version }})
EOF
- name: Create ${{ needs.determine-tag.outputs.release-tag }} Release
uses: softprops/action-gh-release@v1
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release Notes

## 0.3.7
## 0.3.8

This release brings support for files with sources other than the scie itself. This allows for
shipping skinny skis that later materialize certain files from the internet or elsewhere just when
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = [

[package]
name = "scie-jump"
version = "0.3.7"
version = "0.3.8"
description = "The self contained interpreted executable launcher."
authors = [
"John Sirois <[email protected]>",
Expand Down

0 comments on commit 54c7520

Please sign in to comment.