Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
inoas committed Jan 16, 2025
1 parent 897e5c2 commit 907146c
Show file tree
Hide file tree
Showing 3 changed files with 330 additions and 68 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,35 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),

<!-- ## [Unreleased] -->

## [5.0.0] - 2025-01-16

- Removed duplicate functions:
- `given.given`
use qualified `given.that(...` or
unqualified import `given` instead.
- `given.not_given`
use qualified `given.not(in:...` or
unqualified import `not_given` instead.
- `given.ok_in`
use qualified `given.ok(in:...` or
unqualified import `given_ok_in` instead.
- `given.error_in`,
use qualified `given.error(in:...` or
unqualified import `given_error_in` instead.
- Added:
- `given.all`
- `given.any`
- `given.not_all`
- `given.not_any`
- `given.all_ok`
- `given.any_ok`
- `given.all_error`
- `given.any_error`
- `given.all_some`
- `given.any_some`
- `given.all_none`
- `given.any_none`

## [4.1.1] - 2025-01-01

- Improved examples.
Expand Down
2 changes: 1 addition & 1 deletion gleam.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "given"
version = "4.1.1"
version = "5.0.0"

# Fill out these fields if you intend to generate HTML documentation or publish
# your project to the Hex package manager.
Expand Down
Loading

0 comments on commit 907146c

Please sign in to comment.