From 24d1dfb5dfcb886905ba1318db54623046c7504f Mon Sep 17 00:00:00 2001 From: Alex Good Date: Thu, 28 Nov 2024 10:33:47 +0000 Subject: [PATCH] v0.2.0 --- CHANGELOG.md | 13 +++++++++++++ Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..06bde91 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +## 0.2.0 - 2024-11-28 + +### Added + +* Add `Repo::peer_state` which returns information about how in-sync we are + with another peer. (`469a3556`) + +### Fixed + +* Fix an issue where the Repo could fail to respond to sync messages for a + document which is authorized. (`a5b19f79`) + + diff --git a/Cargo.toml b/Cargo.toml index d1b583e..0a872dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "automerge_repo" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "MIT" authors = ["Alex Good ", "Gregory Terzian"]