diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1b42218..2cce175 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,8 +21,10 @@ jobs: id: changelog_reader with: version: ${{ steps.version.outputs.value }} - - name: download artifacts - uses: actions/download-artifact@v4 + - name: install rust + uses: dtolnay/rust-toolchain@stable + - name: publish to crates.io + run: cargo publish --token ${{ secrets.CRATES_IO_TOKEN }} - name: create release uses: softprops/action-gh-release@v2 with: diff --git a/CHANGELOG.md b/CHANGELOG.md index 7580445..98fb7c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,26 @@ All notable changes to this project will be documented in this file. +## [0.3.0] - 2024-12-11 + +### Features + +- Return reconfigured stream ([#95](https://github.com/s2-streamstore/s2-cli/issues/95)) +- Implement `SequencedRecord::as_command_record` ([#96](https://github.com/s2-streamstore/s2-cli/issues/96)) +- Make protoc requirement optional ([#103](https://github.com/s2-streamstore/s2-cli/issues/103)) + +### Bug Fixes + +- Tonic-side-effect version ([#102](https://github.com/s2-streamstore/s2-cli/issues/102)) + +### Miscellaneous Tasks + +- Update proto and associated types for non-optional `start_seq_num` ([#97](https://github.com/s2-streamstore/s2-cli/issues/97)) +- `CommandRecord::Fence` requires `FencingToken` even if empty ([#98](https://github.com/s2-streamstore/s2-cli/issues/98)) +- Rm serde ([#99](https://github.com/s2-streamstore/s2-cli/issues/99)) +- Lower `max_append_inflight_bytes` default +- Move sync_docs to separate repository ([#101](https://github.com/s2-streamstore/s2-cli/issues/101)) + ## [0.2.0] - 2024-12-04 ### Features diff --git a/Cargo.toml b/Cargo.toml index 098f1cf..d54f0a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "streamstore" description = "Rust SDK for S2" -version = "0.2.0" +version = "0.3.0" edition = "2021" license = "Apache-2.0" keywords = ["wal", "grpc", "s2", "log", "stream"]