From 6d84b7d9772190a36ec3682126889a1a89235926 Mon Sep 17 00:00:00 2001 From: Ben Haney Date: Wed, 9 Aug 2023 23:02:53 -0500 Subject: [PATCH] Prepare release --- CHANGELOG.md | 5 +++-- README.md | 2 +- mix.exs | 2 +- native/jsonrs/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ac2eb5..4ed3eb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.3.2] - 2023-08-09 ### Changed - Make `decode/2` and `decode!/2` accept iodata instead of just Strings @@ -62,7 +62,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release -[Unreleased]: https://github.com/benhaney/Jsonrs/compare/v0.3.1...HEAD +[Unreleased]: https://github.com/benhaney/Jsonrs/compare/v0.3.2...HEAD +[0.3.2]: https://github.com/benhaney/Jsonrs/compare/v0.3.1...v0.3.2 [0.3.1]: https://github.com/benhaney/Jsonrs/compare/v0.3.0...v0.3.1 [0.3.0]: https://github.com/benhaney/Jsonrs/compare/v0.2.1...v0.3.0 [0.2.1]: https://github.com/benhaney/Jsonrs/compare/v0.2.0...v0.2.1 diff --git a/README.md b/README.md index 8309643..ca2700b 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Add Jsonrs as a dependency in your `mix.exs` file. ```elixir def deps do - [{:jsonrs, "~> 0.3.1"}] + [{:jsonrs, "~> 0.3"}] end ``` diff --git a/mix.exs b/mix.exs index e62cbb7..45106db 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Jsonrs.MixProject do use Mix.Project - @version "0.3.1" + @version "0.3.2" def project do [ diff --git a/native/jsonrs/Cargo.toml b/native/jsonrs/Cargo.toml index 2deba22..2ba748c 100644 --- a/native/jsonrs/Cargo.toml +++ b/native/jsonrs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonrs" -version = "0.3.1" +version = "0.3.2" authors = [] edition = "2018"