diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b31194..f7b2c2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ Starting from version 0.4.0, Doctave will maintain this changelog to describe ch 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). +## [0.4.2](https://github.com/Doctave/doctave/releases/tag/0.4.2) 2022-04-02 + +### Fixed + +- Fix loading of Prism grammars when using a subdomain [#40](https://github.com/Doctave/doctave/issues/34)([@oeb25](https://github.com/oeb25)) + ## [0.4.1](https://github.com/Doctave/doctave/releases/tag/0.4.1) 2022-01-05 ### Fixed @@ -33,4 +39,4 @@ This was the biggest release since the initial introduction of Doctave, adding a - Build failure when including the root path in the navigation hierarchy [#18](https://github.com/Doctave/doctave/issues/18) ([@datdenkikniet](https://github.com/datdenkikniet)) -- Right side navigation not including text from code blocks in headings [#15](https://github.com/Doctave/doctave/issues/15) \ No newline at end of file +- Right side navigation not including text from code blocks in headings [#15](https://github.com/Doctave/doctave/issues/15) diff --git a/Cargo.toml b/Cargo.toml index 905a9d6..3bfe17f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "doctave" -version = "0.4.1" +version = "0.4.2" authors = ["Niklas Begley "] edition = "2018" diff --git a/README.md b/README.md index e26349c..9f80abb 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ You can also use the Rust package manager, Cargo, to install Doctave. Currently listed on crates.io, but you can install it directly from GitHub: ``` -$ cargo install --git https://github.com/Doctave/doctave --tag 0.4.1 +$ cargo install --git https://github.com/Doctave/doctave --tag 0.4.2 ``` ## Getting started diff --git a/docs/installing.md b/docs/installing.md index 1751b62..45b240d 100644 --- a/docs/installing.md +++ b/docs/installing.md @@ -28,5 +28,5 @@ You can also use the Rust package manager, Cargo, to install Doctave. Currently listed on crates.io, but you can install it directly from GitHub: ``` -$ cargo install --git https://github.com/Doctave/doctave --tag 0.4.1 +$ cargo install --git https://github.com/Doctave/doctave --tag 0.4.2 ```