Skip to content
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
6 changes: 1 addition & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,6 @@ jobs:
needs:
[
tag-release,
macos-python-release,
windows-python-release,
linux-python-release,
linux-musl-python-release,
]
steps:
- name: Checkout repository
Expand Down Expand Up @@ -343,7 +339,7 @@ jobs:
- name: Build release binary
shell: bash
run: |
cargo build --verbose --release --bin dbn-cli ${{ env.TARGET_FLAGS }}
cargo build --verbose --release --bin dbn ${{ env.TARGET_FLAGS }}
if [ "${{ matrix.os }}" = "windows-latest" ]; then
bin="target/${{ matrix.target }}/release/dbn.exe"
else
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.44.0 - 2025-11-18

### Enhancements
- Added logic to set `code` when upgrading version 1 `SystemMsg` to newer versions
- Added `MergeRecordDecoder::with_hints` that allows hinting the minimum timestamp from
each decoder
- Added `Dataset::publishers()` method to retrieve all `Publisher` values for a dataset

### Breaking changes
- Updated the minimum supported `tokio` version to 1.41, which was released one year ago

### Bug fixes
- Fixed bug in `DbnFsm::consume`, though it should have no impact

## 0.43.0 - 2025-10-22

### Enhancements
Expand Down
Loading