From 38a844d3ed79253fecca3cfbff30f873f4bcd2f8 Mon Sep 17 00:00:00 2001 From: liv Date: Wed, 26 Jul 2023 20:37:15 +0200 Subject: [PATCH] release: 0.3.0-prerelease.3 --- CHANGELOG.md | 5 +++++ Cargo.lock | 2 +- Cargo.toml | 2 +- oranda-css/package.json | 2 +- src/config/style.rs | 2 +- 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 731c14cc..17f56c07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,11 @@ Platforms are now sorted alphabetically in the install widget dropdown. This is an improvement over the previous unsorted state. +- **Show prerelease contents on changelog pages - [shadows-withal]/[pr549]** + + This is a simple bug fix. Previously, we accidentally hid the body of a prerelease on its own separate changelog page + (but mysteriously, it showed up on the main changelog page when prereleases were toggled!) + [i480]: https://github.com/axodotdev/oranda/issues/480 [i493]: https://github.com/axodotdev/oranda/issues/493 [pr532]: https://github.com/axodotdev/oranda/pull/532 diff --git a/Cargo.lock b/Cargo.lock index d7fc484d..b8242864 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1918,7 +1918,7 @@ dependencies = [ [[package]] name = "oranda" -version = "0.3.0-prerelease.2" +version = "0.3.0-prerelease.3" dependencies = [ "ammonia", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 7a2b323f..9339e14e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "oranda" description = "🎁 generate beautiful landing pages for your projects" repository = "https://github.com/axodotdev/oranda" homepage = "https://opensource.axo.dev/oranda" -version = "0.3.0-prerelease.2" +version = "0.3.0-prerelease.3" edition = "2021" authors = ["Axo Developer Co. "] license = "MIT OR Apache-2.0" diff --git a/oranda-css/package.json b/oranda-css/package.json index de57d17e..05a311ad 100644 --- a/oranda-css/package.json +++ b/oranda-css/package.json @@ -1,6 +1,6 @@ { "name": "oranda-css", - "version": "0.3.0-prerelease.2", + "version": "0.3.0-prerelease.3", "description": "", "main": "tailwind.config.js", "scripts": { diff --git a/src/config/style.rs b/src/config/style.rs index 97a371e1..6051d1f9 100644 --- a/src/config/style.rs +++ b/src/config/style.rs @@ -6,7 +6,7 @@ use crate::site::{markdown::SyntaxTheme, oranda_theme::OrandaTheme}; use super::ApplyValExt; -pub const ORANDA_CSS_TAG: &str = "v0.3.0-prerelease.2"; +pub const ORANDA_CSS_TAG: &str = "v0.3.0-prerelease.3"; /// Config related to styling your page (complete version) #[derive(Debug, Clone)]