diff --git a/CHANGELOG.md b/CHANGELOG.md index fb02996..dc28b55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Changelog -# 0.6.0 - 2025-12-05 +## 0.6.1 - 2025-12-08 + +### Added + +* impl `PartialEq` and `Eq` for `AutomergeUrl` + +### Fixed + +* samod: Use doc_cfg instead of doc_auto_cfg to make docs.rs build work + +## 0.6.0 - 2025-12-05 This release is a reasonably chunky change to the API of `samod`. Instead of having `Repo::connect` return a future which needs to be driven, `Repo::connect` diff --git a/Cargo.lock b/Cargo.lock index dcb8761..e0352fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1317,7 +1317,7 @@ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" [[package]] name = "samod" -version = "0.6.0" +version = "0.6.1" dependencies = [ "async-channel", "automerge", @@ -1345,7 +1345,7 @@ dependencies = [ [[package]] name = "samod-core" -version = "0.6.0" +version = "0.6.1" dependencies = [ "automerge", "base64 0.21.7", diff --git a/samod-core/Cargo.toml b/samod-core/Cargo.toml index 4970439..f8c75f8 100644 --- a/samod-core/Cargo.toml +++ b/samod-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "samod-core" -version = "0.6.0" +version = "0.6.1" edition = "2024" repository = "https://github.com/alexjg/samod" authors = ["Alex Good "] diff --git a/samod/Cargo.toml b/samod/Cargo.toml index 41be33f..5217e89 100644 --- a/samod/Cargo.toml +++ b/samod/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "samod" -version = "0.6.0" +version = "0.6.1" edition = "2024" authors = ["Alex Good "] description = "A rust library for managing automerge documents, compatible with the js automerge-repo library" @@ -22,7 +22,7 @@ chrono = "0.4.41" futures = "0.3.31" rand = "0.9.1" rayon = { version = "1.10.0", optional = true } -samod-core = { path = "../samod-core", version = "0.6.0" } +samod-core = { path = "../samod-core", version = "0.6.1" } 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 = [