From 6c37a440c253ea3864e06ad688ec966b89c459dd Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Thu, 15 Jun 2023 01:51:02 +0100 Subject: [PATCH] Release 0.2.0 --- CHANGELOG.md | 23 +++++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fb0dfb..f5c8629 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,29 @@ All notable changes will be documented in this file. This project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## 0.2.0 (15 June 2023) + +### Added + + - Implemented Twitter emojis (Twemoji) + - Added collapsible callouts for screenshots and images + - Made headings collapsible + - Added heading link anchors on hover + - Added automatic table of contents menu + - Added titles for image and screenshot callouts + +### Changed + + - Moved extra Markdown processing from client-side JavaScript to Rust build + script + - Various styling tweaks + +### Removed + + - Removed use of hardlinks from build script + + ## 0.1.0 (12 June 2023) - Initial release. diff --git a/Cargo.toml b/Cargo.toml index 46f46e3..f2f4cb4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustmark" -version = "0.1.0" +version = "0.2.0" description = "Extensible web application for serving Markdown-based content" categories = ["asynchronous", "parser-implementations", "text-processing", "web-programming", "web-programming::http-server"] keywords = ["web", "server", "markdown", "template", "authentication"]