Skip to content

Commit

Permalink
Release v0.15.5
Browse files Browse the repository at this point in the history
Updating `release.sh` in the process. Now doing the tox tests in serial because they kept clobbering each other's work on the wheel files.
  • Loading branch information
clayote committed Aug 10, 2024
1 parent bb465ff commit d6c0bab
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
== 0.15.5 | 2024-08-10 ==
* Fix a crash when resuming ELiDE in the past of a simulation
* Fix rules sometimes not triggering, based on when the trigger was set

== 0.15.4 | 2024-08-08 ==
* Fix time travel via rule stepper
* Restore the ability to delete Characters
Expand Down
4 changes: 2 additions & 2 deletions ELiDE/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include-package-data=true

[project]
name = "ELiDE"
version = "0.15.4"
version = "0.15.5"
authors = [
{ name="Zachary Spector", email="[email protected]" },
]
Expand All @@ -22,7 +22,7 @@ classifiers = [
"Development Status :: 2 - Pre-Alpha"
]
dependencies = [
"LiSE>=0.15.0,<0.16.0",
"LiSE>=0.15.5,<0.16.0",
"kivy>=2.0.0,<3",
"kivy-deps.glew ; sys_platform == 'win32'",
"kivy-deps.sdl2 ; sys_platform == 'win32'",
Expand Down
2 changes: 1 addition & 1 deletion LiSE/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include-package-data=true

[project]
name = "LiSE"
version = "0.15.4"
version = "0.15.5"
authors = [
{ name="Zachary Spector", email="[email protected]" },
]
Expand Down
6 changes: 3 additions & 3 deletions release.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/bin/bash
set -euxo
python -m tox -p auto
python -m tox
rm -rf LiSE/build LiSE/dist
python -m build LiSE/
rm -rf ELiDE/build ELiDE/dist
python -m build ELiDE/
python -m twine check LiSE/dist/* ELiDE/dist/*
python -m twine upload --repository LiSE LiSE/dist/*
python -m twine upload --repository ELiDE ELiDE/dist/*
python -m twine upload LiSE/dist/*
python -m twine upload ELiDE/dist/*
rm -rf LiSE/build LiSE/dist ELiDE/build ELiDE/dist

0 comments on commit d6c0bab

Please sign in to comment.