From 459249f9211711ae2e2659f622ad46645fe7fae5 Mon Sep 17 00:00:00 2001 From: Mike the Tike Date: Mon, 6 Sep 2021 14:24:46 +0200 Subject: [PATCH] v0.11.1 Bug Fixes --- * remove extra compress call during pubkey::deserialize (#56) --- .clog.toml | 9 +++++++++ Cargo.toml | 2 +- changelog.md | 7 +++++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 .clog.toml create mode 100644 changelog.md diff --git a/.clog.toml b/.clog.toml new file mode 100644 index 00000000..3c73d774 --- /dev/null +++ b/.clog.toml @@ -0,0 +1,9 @@ +[clog] +# A repository link with the trailing '.git' which will be used to generate +# all commit and issue links +repository = "https://github.com/tari-project/tari-crypto" + +# specify the style of commit links to generate, defaults to "github" if omitted +link-style = "github" +#changelog = "changelog.md" +from-latest-tag = true \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 739ddedb..342363ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ categories = ["cryptography"] homepage = "https://tari.com" readme = "README.md" license = "BSD-3-Clause" -version = "0.11.1" +version = "0.11.2" edition = "2018" [dependencies] diff --git a/changelog.md b/changelog.md new file mode 100644 index 00000000..25103004 --- /dev/null +++ b/changelog.md @@ -0,0 +1,7 @@ + +## 0.11.1 (2021-09-06) + + +#### Bug Fixes + +* remove extra compress call during pubkey::deserialize (#56) ([8864b5a2](https://github.com/tari-project/tari-crypto/commit/8864b5a20bd55c8e075be67b132daebe22762e0c))