Skip to content

Commit

Permalink
release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
raehik committed Aug 27, 2022
1 parent 0a8a0cc commit a2fc46d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 19 deletions.
18 changes: 4 additions & 14 deletions .github/workflows/hackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,21 +49,11 @@ jobs:
done
- name: Delete preinstalled docs-stripped GHC ${{ env.ghc }}
run: rm -rf $HOME/.ghcup/ghc/${{ env.ghc }}
run: ghcup rm ghc ${{ env.ghc }}
if: always()

- name: Cache GHC ${{ env.ghc }}
uses: actions/cache@v2
with:
path: ~/.ghcup/ghc/${{ env.ghc }}
key: hackage-ghc-${{ runner.os }}-ghc_${{ env.ghc }}

- name: Install GHC ${{ env.ghc }} if not present from cache
run: |
if [ ! -d $HOME/.ghcup/ghc/${{ env.ghc }} ]; then
ghcup install ghc --force ${{ env.ghc }}
fi
- run: ghcup set ghc ${{ env.ghc }}
- name: Install GHC ${{ env.ghc }}
run: ghcup install ghc --set ${{ env.ghc }}

- run: cabal update

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## 0.3.0 (2022-08-27)
* useful parsing errors in `Get`
* e.g. if parsing fails at "any Word64", emits "ran out, needed 8 bytes"
* generic deriver places tons of data type info in highly structured errors
Expand Down
4 changes: 2 additions & 2 deletions binrep.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cabal-version: 1.12
-- see: https://github.com/sol/hpack

name: binrep
version: 0.2.0
version: 0.3.0
synopsis: Encode precise binary representations directly in types
description: Please see README.md.
category: Data, Serialization
Expand All @@ -17,7 +17,7 @@ license: MIT
license-file: LICENSE
build-type: Simple
tested-with:
GHC ==9.2.3
GHC ==9.2.4
extra-source-files:
README.md
CHANGELOG.md
Expand Down
4 changes: 2 additions & 2 deletions package.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: binrep
version: 0.2.0
version: 0.3.0
synopsis: Encode precise binary representations directly in types
description: Please see README.md.
extra-source-files:
- README.md
- CHANGELOG.md
category: Data, Serialization
tested-with: GHC ==9.2.3
tested-with: GHC ==9.2.4
license: MIT
license-file: LICENSE

Expand Down

0 comments on commit a2fc46d

Please sign in to comment.