From 2013d17b085dbc2253e79adaaf51ace959bd0338 Mon Sep 17 00:00:00 2001 From: "Jonathan Pallant (Ferrous Systems)" Date: Tue, 23 May 2023 13:52:46 +0100 Subject: [PATCH] Update to 0.3.0. Also adds a changelog. --- CHANGELOG.md | 19 +++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++++ 4 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..768605e --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,19 @@ +# Change Log + +## [v0.3.0](https://github.com/ferrous-systems/mdslides/releases/tag/v0.3.0) - 2023-05-23 + +* The `index.html` file now includes headings and subheadings +* Split into `main.rs` and `lib.rs` and added unit tests. + +## [v0.2.0](https://github.com/ferrous-systems/mdslides/releases/tag/v0.2.0) - 2023-04-23 + +* Added extra license info to `--help` +* Generates `index.html` file + +## [v0.1.1](https://github.com/ferrous-systems/mdslides/releases/tag/v0.1.1) - 2023-04-21 + +* Added metadata to `Cargo.toml` + +## [v0.1.0](https://github.com/ferrous-systems/mdslides/releases/tag/v0.1.0) - 2023-04-21 + +* First version \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 97232b1..a450337 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -255,7 +255,7 @@ dependencies = [ [[package]] name = "mdslides" -version = "0.2.0" +version = "0.3.0" dependencies = [ "clap", "env_logger", diff --git a/Cargo.toml b/Cargo.toml index 7c4b09a..42b8e8b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0 OR MIT" name = "mdslides" readme = "README.md" repository = "https://github.com/ferrous-systems/mdslides/" -version = "0.2.0" +version = "0.3.0" [dependencies] clap = {version = "4", features = ["derive"]} diff --git a/README.md b/README.md index 833ebe7..0effdb3 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,10 @@ You can also pass `--index-template ./index-template.html` and a file called `${ You can see an example of using this tool at . +## Changelog + +See [CHANGELOG.md](./CHANGELOG.md) + ## License This crate is distributed under the terms of both the MIT license and the Apache License (Version 2.0).