From d475b4fba73f3648d48e67fb07a515741b37a754 Mon Sep 17 00:00:00 2001 From: Timo Tiuraniemi Date: Thu, 4 Jul 2024 19:19:08 +0300 Subject: [PATCH] Release v0.13.0 --- CHANGELOG.md | 18 ++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b57c6d..10ede10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## 2024-07-04, Version v0.13.0 +### Commits +- [[`16acbffc92`](https://github.com/datrs/hypercore/commit/16acbffc9297c645c0740f33eb6fbee06681871e)] Remove generic parameters from Hypercore and Storage #139 (cowlicks) + +### Stats +```diff + benches/disk.rs | 5 ++--- + benches/memory.rs | 24 ++++++++++++++++-------- + examples/replication.rs | 6 ++---- + src/builder.rs | 17 +++++------------ + src/core.rs | 24 +++++++----------------- + src/lib.rs | 2 +- + src/storage/mod.rs | 62 +++++++++++++++++++++++++++++++++++--------------------------- + tests/common/mod.rs | 5 ++--- + 8 files changed, 70 insertions(+), 75 deletions(-) +``` + + ## 2023-10-28, Version v0.12.1 ### Commits - [[`60d50a5e76`](https://github.com/datrs/hypercore/commit/60d50a5e7638c60047c722b6cfb7c50e29ecd502)] Fix Oplog decoding failing on bitfied update (Timo Tiuraniemi) diff --git a/Cargo.toml b/Cargo.toml index efb6a44..4c4cdad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hypercore" -version = "0.12.2-alpha.1" +version = "0.13.0" license = "MIT OR Apache-2.0" description = "Secure, distributed, append-only log" documentation = "https://docs.rs/hypercore"