From 39b3717e89f5db62f2d2444e8bc3e4d8a284b52c Mon Sep 17 00:00:00 2001 From: Alan Mantoux Date: Wed, 17 Apr 2024 13:02:59 +0200 Subject: [PATCH] v1.1.1 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ba56d83 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,6 @@ +## 1.1.1 +- **Fix** Missing deserialization of `Delta` + +## 1.1.0 +- Shorthand for attributes +- Creation of `Delta`s less chatty \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index bdb645b..6b02f30 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,7 +19,7 @@ dependencies = [ [[package]] name = "quill-delta-rs" -version = "1.1.0" +version = "1.1.1" dependencies = [ "serde", "serde_derive", diff --git a/Cargo.toml b/Cargo.toml index 1e56444..e35bacb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quill-delta-rs" -version = "1.1.0" +version = "1.1.1" edition = "2021" license = "MIT" description = "Implementation of Quill editor Delta format in Rust"