Skip to content

Commit 2908393

Browse files
committed
chore: release bsv-wallet-postgres v0.5.0
1 parent f152740 commit 2908393

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

gem/bsv-wallet-postgres/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ All notable changes to the `bsv-wallet-postgres` gem are documented here.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
66
and this gem adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.5.0 — 2026-04-16
9+
10+
### Changed — **Breaking**
11+
12+
- `SolidQueueAdapter` now sets the wallet action status to `'unproven'` instead of `'completed'` on successful broadcast. Aligns with the status taxonomy change in bsv-wallet 0.9.0 (HLR #455). The `wallet_broadcast_jobs` row status is unchanged (job queue lifecycle is a separate domain).
13+
14+
### Added
15+
16+
- `BroadcastQueue#broadcast_enabled?` interface method; `SolidQueueAdapter` returns `true` (broadcaster required at construction time). Enables `WalletClient#broadcast_enabled?` to detect a queue-embedded broadcaster.
17+
18+
### Changed
19+
20+
- Minimum `bsv-wallet` version raised from `>= 0.6.0` to `>= 0.9.0`. Required for the new status taxonomy and `broadcast_enabled?` interface.
21+
822
## 0.4.0 — 2026-04-12
923

1024
### Added

gem/bsv-wallet-postgres/bsv-wallet-postgres.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
2929

3030
# bsv-wallet-postgres is released alongside bsv-wallet; the floor rises
3131
# with every wallet security release.
32-
spec.add_dependency 'bsv-wallet', '>= 0.6.0', '< 1.0'
32+
spec.add_dependency 'bsv-wallet', '>= 0.9.0', '< 1.0'
3333
spec.add_dependency 'pg', '~> 1'
3434
spec.add_dependency 'sequel', '~> 5'
3535
end

gem/bsv-wallet-postgres/lib/bsv/wallet_postgres/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module BSV
44
module WalletPostgres
5-
VERSION = '0.4.0'
5+
VERSION = '0.5.0'
66
end
77
end

0 commit comments

Comments
 (0)