From f0e8ff2a7043ef08a4bd9c5af8dfb6202eb6e420 Mon Sep 17 00:00:00 2001 From: Alex Good Date: Wed, 25 Mar 2026 15:45:36 +0000 Subject: [PATCH] v0.9.0 --- CHANGELOG.md | 6 +++--- Cargo.lock | 4 ++-- samod-core/Cargo.toml | 2 +- samod/Cargo.toml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a625af..ec7cc82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # Changelog -## Unreleased +## 0.9.0 - 2026-03-25 -### Changed +### Breaking Changes * Updated to `automerge@0.8.0` @@ -22,7 +22,7 @@ to an `events()` stream directly on the handle, or `await` for `handshake_completed()`. -## 0.8.0 - 2024-03-06 +## 0.8.0 - 2026-03-06 The main focus of this release is a new connection management API which replaces the `Repo::connect` method with separate APIs for making outgoing diff --git a/Cargo.lock b/Cargo.lock index 7bdb199..9305a06 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1459,7 +1459,7 @@ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" [[package]] name = "samod" -version = "0.8.0" +version = "0.9.0" dependencies = [ "async-channel", "automerge", @@ -1489,7 +1489,7 @@ dependencies = [ [[package]] name = "samod-core" -version = "0.8.0" +version = "0.9.0" dependencies = [ "automerge", "base64 0.21.7", diff --git a/samod-core/Cargo.toml b/samod-core/Cargo.toml index 403c275..cd99eab 100644 --- a/samod-core/Cargo.toml +++ b/samod-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "samod-core" -version = "0.8.0" +version = "0.9.0" edition = "2024" repository = "https://github.com/alexjg/samod" authors = ["Alex Good "] diff --git a/samod/Cargo.toml b/samod/Cargo.toml index b1ae2e6..887e3f5 100644 --- a/samod/Cargo.toml +++ b/samod/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "samod" -version = "0.8.0" +version = "0.9.0" edition = "2024" authors = ["Alex Good "] description = "A rust library for managing automerge documents, compatible with the js automerge-repo library" @@ -23,7 +23,7 @@ futures = "0.3.31" futures-timer = "3.0.3" rand = "0.9.1" rayon = { version = "1.10.0", optional = true } -samod-core = { path = "../samod-core", version = "0.8.0" } +samod-core = { path = "../samod-core", version = "0.9.0" } tokio = { version = "1.46.0", features = ["rt", "time", "fs"], optional = true } tokio-tungstenite = { version = "0.27.0", optional = true } tokio-util = { version = "0.7.15", features = [