Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.3.0.1 #83

Merged
merged 3 commits into from
May 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ You will find below the main lib and its companions:

The core library supports [`v3` and `v4` biscuits][spec] (both open and sealed).

[CI-badge]: https://img.shields.io/github/actions/workflow/status/Divarvel/biscuit-haskell/github-actions.yml?style=flat-square&branch=main
[CI-url]: https://github.com/Divarvel/biscuit-haskell/actions
[CI-badge]: https://img.shields.io/github/actions/workflow/status/biscuit-auth/biscuit-haskell/github-actions.yml?style=flat-square&branch=main
[CI-url]: https://github.com/biscuit-auth/biscuit-haskell/actions
[Hackage]: https://img.shields.io/hackage/v/biscuit-haskell?color=purple&style=flat-square
[hackage-url]: https://hackage.haskell.org/package/biscuit-haskell
[gcouprie]: https://github.com/geal
Expand Down
6 changes: 6 additions & 0 deletions biscuit-servant/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog for biscuit-servant

## 0.3.0.1

- use biscuit-haskell 0.3.0.1
- GHC 9.6 and 9.8 support
- Generalize type for `withPriorityAuthorizer`

## 0.3.0.0

- use biscuit-haskell 0.3.0.0
Expand Down
4 changes: 2 additions & 2 deletions biscuit-servant/biscuit-servant.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 2.0

name: biscuit-servant
version: 0.3.0.0
version: 0.3.0.1
category: Security
synopsis: Servant support for the Biscuit security token
description: Please see the README on GitHub at <https://github.com/biscuit-auth/biscuit-haskell#readme>
Expand All @@ -13,7 +13,7 @@ copyright: 2021 Clément Delafargue
license: BSD3
license-file: LICENSE
build-type: Simple
tested-with: GHC ==8.10.7 || == 9.0.2 || ==9.2.4
tested-with: GHC ==9.0.2 || ==9.2.4 || ==9.6.5 || ==9.8.2
extra-source-files:
README.md
ChangeLog.md
Expand Down
7 changes: 7 additions & 0 deletions biscuit/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog for biscuit-haskell

## 0.3.0.1

- GHC 9.6 and 9.8 support
- Support for `!=`
- Fixed-sized arithmetic and overflow detection
- Allow parsing chained method calls

## 0.3.0.0

- GHC 9.2 support
Expand Down
4 changes: 2 additions & 2 deletions biscuit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ creation = do
pure $ serializeB64 newBiscuit
```

[CI-badge]: https://img.shields.io/github/workflow/status/Divarvel/biscuit-haskell/CI?style=flat-square
[CI-url]: https://github.com/Divarvel/biscuit-haskell/actions
[CI-badge]: https://img.shields.io/github/actions/workflow/status/biscuit-auth/biscuit-haskell/github-actions.yml?style=flat-square&branch=main
[CI-url]: https://github.com/biscuit-auth/biscuit-haskell/actions
[Hackage]: https://img.shields.io/hackage/v/biscuit-haskell?color=purple&style=flat-square
[hackage-url]: https://hackage.haskell.org/package/biscuit-haskell
[gcouprie]: https://github.com/geal
Expand Down
2 changes: 1 addition & 1 deletion biscuit/biscuit-haskell.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 2.0

name: biscuit-haskell
version: 0.3.0.0
version: 0.3.0.1
category: Security
synopsis: Library support for the Biscuit security token
description: Please see the README on GitHub at <https://github.com/biscuit-auth/biscuit-haskell#readme>
Expand Down
2 changes: 1 addition & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

mkShell {
buildInputs = [
haskell.compiler.ghc924
haskell.compiler.ghc94
haskell-language-server
pkg-config
libsodium
Expand Down
Loading