Skip to content

Commit

Permalink
prep for v0.5.0.0 + action update
Browse files Browse the repository at this point in the history
  • Loading branch information
someodd committed Oct 8, 2024
1 parent 2da8300 commit 16dbc2e
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
15 changes: 14 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,27 @@ jobs:
enable-stack: 'true'
stack-version: 'latest'

- name: Compute Cache Key
id: cache_key
run: echo "key=$(tail -n +3 package.yaml | sha256sum | cut -d ' ' -f1)" >> $GITHUB_ENV

- name: Cache Stack dependencies
uses: actions/cache@v3
with:
path: |
~/.stack
!~/.stack/programs
./.stack-work
key: ${{ runner.os }}-stack-${{ hashFiles('stack.yaml', 'package.yaml') }}
key: ${{ runner.os }}-stack-${{ hashFiles('stack.yaml') }}-${{ env.key }}
restore-keys: |
${{ runner.os }}-stack-
- name: Cache fpm gems
uses: actions/cache@v3
with:
path: |
~/.gem
key: ${{ runner.os }}-gem

- name: Install fpm
run: |
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [0.5.0.0] - 2024-10-07

### Fixed

* Was attempting to parse directories as files just because they matched the parseable file whitelist
Expand Down Expand Up @@ -43,7 +45,8 @@ Gearing up for server daemon.

* Initial release

[unreleased]: https://github.com/someodd/bore/compare/v0.4.0.0...HEAD
[unreleased]: https://github.com/someodd/bore/compare/v0.5.0.0...HEAD
[0.5.0.0]: https://github.com/someodd/bore/compare/v0.4.0.0...v0.5.0.0
[0.4.0.0]: https://github.com/someodd/bore/compare/v0.3.0.1...v0.4.0.0
[0.3.0.0]: https://github.com/someodd/bore/compare/v0.2.0.0...v0.3.0.0
[0.2.0.0]: https://github.com/someodd/bore/compare/v0.1.0.0...v0.2.0.0
Expand Down
2 changes: 1 addition & 1 deletion bore.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cabal-version: 2.2
-- see: https://github.com/sol/hpack

name: bore
version: 0.4.0.0
version: 0.5.0.0
synopsis: Build gopherholes.
description: Static site builder, but for gopherholes. Manage phlogs with tags, use the Markdown renderer and Mustache templating system.
category: Network
Expand Down
2 changes: 1 addition & 1 deletion package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: bore
version: 0.4.0.0
version: 0.5.0.0
synopsis: Build gopherholes.
description: |
Static site builder, but for gopherholes. Manage phlogs with tags, use the Markdown renderer and Mustache templating system.
Expand Down

0 comments on commit 16dbc2e

Please sign in to comment.