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: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Changelog

## Unreleased
## 0.9.0 - 2026-03-25

### Changed
### Breaking Changes

* Updated to `automerge@0.8.0`

Expand All @@ -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
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.8.0"
version = "0.9.0"
edition = "2024"
repository = "https://github.com/alexjg/samod"
authors = ["Alex Good <alex@patternist.xyz>"]
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.8.0"
version = "0.9.0"
edition = "2024"
authors = ["Alex Good <alex@patternist.xyz>"]
description = "A rust library for managing automerge documents, compatible with the js automerge-repo library"
Expand All @@ -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 = [
Expand Down
Loading