From 2195e5469a15a8d0e84e9530854453f1968a780d Mon Sep 17 00:00:00 2001 From: Vincent Foley Date: Sun, 2 Sep 2018 10:22:14 -0400 Subject: [PATCH] Prepare 0.8.0 release --- Cargo.lock | 2 +- Cargo.toml | 2 +- RELEASE.md | 15 +++++++++++++++ 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5a58123..60c832d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -195,7 +195,7 @@ dependencies = [ [[package]] name = "ppbert" -version = "0.7.0" +version = "0.8.0" dependencies = [ "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.31.2 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index e981f17..d092c3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "ppbert" description = "Simple pretty printer for Erlang's External Term Format" homepage = "https://github.com/gnuvince/ppbert" -version = "0.7.0" +version = "0.8.0" license = "MIT" authors = ["Vincent Foley "] diff --git a/RELEASE.md b/RELEASE.md index 4596625..5061742 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,3 +1,18 @@ +0.8.0 +===== + +API change +---------- + +- Replace `BertTerm::dump_term` with `BertTerm::write_as_bert`. + +Other changes +------------- + +- Add API documentation in bertterm + + + 0.7.0 =====