Skip to content

Commit

Permalink
Bump version to v0.12.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jaspervdj committed Sep 28, 2024
1 parent 39cdb92 commit 0508325
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ jobs:
env:
PATAT_TAG: ${{ steps.get_version.outputs.version }}

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: startsWith(github.ref, 'refs/tags')
with:
path: artifacts/*
name: artifacts
name: artifacts-${{ runner.os }}-${{ matrix.ghc }}

release:
name: Release
Expand All @@ -60,12 +60,13 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: artifacts
pattern: artifacts-*

- run: 'sha256sum patat-*'
- run: ls -R
- run: 'sha256sum artifacts-*/patat-*'

- uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: 'patat-*'
files: 'artifacts-*/patat-*'
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 0.12.0.1 (unreleased)
## 0.12.0.1 (2024-09-28)

* Fix width of code blocks when using wide characters (#171)
* Bump `pandoc` upper bound to 3.3.
Expand Down
2 changes: 1 addition & 1 deletion patat.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: patat
Version: 0.12.0.0
Version: 0.12.0.1
Synopsis: Terminal-based presentations using Pandoc
Description: Terminal-based presentations using Pandoc.
License: GPL-2
Expand Down

0 comments on commit 0508325

Please sign in to comment.