From 20c90a0040b7878cd52de63147aa8ef9662f8676 Mon Sep 17 00:00:00 2001 From: Jan David Date: Tue, 19 Oct 2021 22:33:16 +0200 Subject: [PATCH] Release 0.3.0 (#12) --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6a1a28..54e3e18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0] + ### Changed - Replace `init` function with a builder pattern @@ -25,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Implement simple logger that prints messages to the output console in Godot -[unreleased]: https://github.com/jdno/godot-logger/compare/v0.2.0...HEAD +[unreleased]: https://github.com/jdno/godot-logger/compare/v0.3.0...HEAD +[0.3.0]: https://github.com/jdno/godot-logger/releases/tag/v0.3.0 [0.2.0]: https://github.com/jdno/godot-logger/releases/tag/v0.2.0 [0.1.0]: https://github.com/jdno/godot-logger/releases/tag/v0.1.0 diff --git a/Cargo.toml b/Cargo.toml index 1c30875..f1b06af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "godot-logger" -version = "0.2.0" +version = "0.3.0" edition = "2018" description = "A logger for godot-rust projects that prints logs using the godot_print! macro" diff --git a/README.md b/README.md index 91c013d..4222d3e 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Start by adding [`godot-logger`] and [`log`] as dependencies to your project's ```toml [dependencies] -godot-logger = "0.2.0" +godot-logger = "0.3.0" log = "0.4" ```