Skip to content

Commit 7232f59

Browse files
authored
VER: Release 0.44.0
2 parents b29e068 + 40a4c52 commit 7232f59

File tree

19 files changed

+670
-419
lines changed

19 files changed

+670
-419
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -252,10 +252,6 @@ jobs:
252252
needs:
253253
[
254254
tag-release,
255-
macos-python-release,
256-
windows-python-release,
257-
linux-python-release,
258-
linux-musl-python-release,
259255
]
260256
steps:
261257
- name: Checkout repository
@@ -343,7 +339,7 @@ jobs:
343339
- name: Build release binary
344340
shell: bash
345341
run: |
346-
cargo build --verbose --release --bin dbn-cli ${{ env.TARGET_FLAGS }}
342+
cargo build --verbose --release --bin dbn ${{ env.TARGET_FLAGS }}
347343
if [ "${{ matrix.os }}" = "windows-latest" ]; then
348344
bin="target/${{ matrix.target }}/release/dbn.exe"
349345
else

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 0.44.0 - 2025-11-18
4+
5+
### Enhancements
6+
- Added logic to set `code` when upgrading version 1 `SystemMsg` to newer versions
7+
- Added `MergeRecordDecoder::with_hints` that allows hinting the minimum timestamp from
8+
each decoder
9+
- Added `Dataset::publishers()` method to retrieve all `Publisher` values for a dataset
10+
11+
### Breaking changes
12+
- Updated the minimum supported `tokio` version to 1.41, which was released one year ago
13+
14+
### Bug fixes
15+
- Fixed bug in `DbnFsm::consume`, though it should have no impact
16+
317
## 0.43.0 - 2025-10-22
418

519
### Enhancements

0 commit comments

Comments
 (0)