Skip to content

Commit 8aa40be

Browse files
committed
Bump minor version.
1 parent 5f94a43 commit 8aa40be

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

lib/sus/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
# Copyright, 2021-2024, by Samuel Williams.
55

66
module Sus
7-
VERSION = "0.32.0"
7+
VERSION = "0.33.0"
88
end

readme.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ Please see the [project documentation](https://socketry.github.io/sus/) for more
2929

3030
Please see the [project releases](https://socketry.github.io/sus/releases/index) for all releases.
3131

32+
### v0.33.0
33+
34+
- Add support for `agent-context` gem.
35+
- [`receive` now supports blocks and `and_raise`.](https://socketry.github.io/sus/releases/index#receive-now-supports-blocks-and-and_raise.)
36+
3237
### v0.32.0
3338

3439
- `Sus::Config` now has a `prepare_warnings!` hook which enables deprecated warnings by default. This is generally considered good behaviour for a test framework.

releases.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Releases
22

3-
## Unreleased
3+
## v0.33.0
44

55
- Add support for `agent-context` gem.
66

77
### `receive` now supports blocks and `and_raise`.
88

99
The `receive` predicate has been enhanced to support blocks and the `and_raise` method, allowing for more flexible mocking of method calls.
1010

11-
```ruby
11+
``` ruby
1212
# `receive` with a block:
1313
expect(interface).to receive(:implementation) {10}
1414

0 commit comments

Comments
 (0)