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
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion samod-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand Down
4 changes: 2 additions & 2 deletions samod/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "samod"
version = "0.6.0"
version = "0.6.1"
edition = "2024"
authors = ["Alex Good <[email protected]>"]
description = "A rust library for managing automerge documents, compatible with the js automerge-repo library"
Expand All @@ -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 = [
Expand Down