Skip to content

Commit

Permalink
release 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
zupo committed Oct 28, 2023
1 parent 49ae6e4 commit db3e84c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,9 @@ jobs:
- name: Verify git tag matches pyproject.toml version
run: |
GIT_VERSION=$GITHUB_REF_NAME
POETRY_VERSION=`nix develop -c poetry version --short`
nix develop -c bash -c "poetry version --short > poetry_version.txt"
POETRY_VERSION=`cat poetry_version.txt`
echo $GIT_VERSION
echo $POETRY_VERSION
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
## Changelog

0.3.2 (2023-10-28)
------------------

* Brown-bag release to fix the release process.
[zupo]


0.3.1 (2023-10-28)
------------------

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tesh"
version = "0.3.1"
version = "0.3.2"
description = "TEstable SHell sessions in Markdown"
readme = "README.md"
authors = [
Expand Down

0 comments on commit db3e84c

Please sign in to comment.