From 236fe3314c593daf8c3a6b4061ad023f44d63071 Mon Sep 17 00:00:00 2001 From: Guillaume Anthouard Date: Wed, 12 May 2021 22:50:41 +0200 Subject: [PATCH] Update changelog --- CHANGELOG.md | 23 ++++++++++++++++++++--- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 22 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2109942..54d9b49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,33 @@ # Changelog + 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). +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.2.0] - 2021-05-12 + +### Added + +- Load a shader with the load button +- Checkbox to activate fs watch + +### Removed + +- Load shader through cli + ## [0.1.0] - 2021-05-11 + ### Added + - Initial release, more like a proof of concept - Load shaders, preprocess some special directives - GUI with egui -[Unreleased]: https://github.com/Gui-Yom/nuance/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/Gui-Yom/nuance/compare/v0.2.0...HEAD + +[0.2.0]: https://github.com/Gui-Yom/nuance/compare/v0.1.0...v0.2.0 + [0.1.0]: https://github.com/Gui-Yom/nuance/releases/tag/v0.1.0 diff --git a/Cargo.lock b/Cargo.lock index 45ceea6..1bbed45 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1571,7 +1571,7 @@ dependencies = [ [[package]] name = "nuance" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "bytemuck", diff --git a/Cargo.toml b/Cargo.toml index cfff2ab..51c06d1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nuance" -version = "0.1.0" +version = "0.2.0" authors = ["Guillaume Anthouard "] edition = "2018" include = ["src/**/*", "LICENSE", "README.md"]