From 11790dd3fd16029b2095c5ea97efc9f6a41e68ef Mon Sep 17 00:00:00 2001 From: liv Date: Thu, 14 Dec 2023 18:01:06 +0100 Subject: [PATCH] release: 0.6.0 --- CHANGELOG.md | 6 +++--- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- generate-css/Cargo.toml | 2 +- src/config/style.rs | 2 +- templates/generate/web.yml.j2 | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0999ec3a..33ba9c1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,12 @@ # Changelog -## Unreleased +## 0.6.0 - 2023-12-14 ### Features - **axo Releases support** - [impl](https://github.com/axodotdev/oranda/pull/672) - oranda how supports axo's homegrown release hosting service, axo Releases! At the time of drafting these notes, + oranda now supports axo's homegrown release hosting service, axo Releases! At time of writing, axo Releases is still in closed beta, however, if you have access and want to try it out, you can set the following configuration parameter: @@ -26,7 +26,7 @@ If you use oranda to work with a project that publishes multiple differently-named binaries, your install widget may end up looking very confusing, with lots of similarly-named tabs. Previously, your options were to set up a [workspace][workspace-docs], or to set the [`components.artifacts.match_package_names`][package-names] configuration - setting. With this release, if you want to keep everything inside of a single website, the install widget will now + setting. With this release, if you want to keep everything inside a single website, the install widget will now show the app names in the tabs, like this: ![picture of an app with lots of tabs and app names](https://i.imgur.com/K0NG2SQ.png) diff --git a/Cargo.lock b/Cargo.lock index 6df80f5c..455cb7d0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2265,7 +2265,7 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" [[package]] name = "oranda" -version = "0.6.0-prerelease.2" +version = "0.6.0" dependencies = [ "ammonia", "assert_cmd", @@ -2322,7 +2322,7 @@ dependencies = [ [[package]] name = "oranda-generate-css" -version = "0.6.0-prerelease.2" +version = "0.6.0" dependencies = [ "axoasset 0.4.0", "camino", diff --git a/Cargo.toml b/Cargo.toml index de18f3fc..20cc2710 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.6.0-prerelease.2" +version = "0.6.0" edition = "2021" authors = ["Axo Developer Co. "] license = "MIT OR Apache-2.0" @@ -56,7 +56,7 @@ pathdiff = { version = "0.2.1", features = ["camino"] } minijinja = { version = "1.0.3", features = ["loader", "preserve_order", "custom_syntax"] } include_dir = "0.7.3" slug = "0.1.4" -oranda-generate-css = { version = "0.6.0-prerelease.1", path = "generate-css" } +oranda-generate-css = { version = "0.6.0", path = "generate-css" } inquire = "0.6.2" url-escape = "0.1.1" rss = { version = "2.0.6", features = ["atom"] } diff --git a/generate-css/Cargo.toml b/generate-css/Cargo.toml index 28c2de92..475a8efa 100644 --- a/generate-css/Cargo.toml +++ b/generate-css/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oranda-generate-css" -version = "0.6.0-prerelease.2" +version = "0.6.0" description = "the part of oranda that generates CSS" repository = "https://github.com/axodotdev/oranda" homepage = "https://opensource.axo.dev/oranda" diff --git a/src/config/style.rs b/src/config/style.rs index b4a52bf0..db858c02 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.6.0-prerelease.2"; +pub const ORANDA_CSS_TAG: &str = "v0.6.0"; /// Config related to styling your page (complete version) #[derive(Debug, Clone)] diff --git a/templates/generate/web.yml.j2 b/templates/generate/web.yml.j2 index d0818468..ee223ae5 100644 --- a/templates/generate/web.yml.j2 +++ b/templates/generate/web.yml.j2 @@ -69,7 +69,7 @@ jobs: {{%- if use_latest_oranda %}} curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/oranda/releases/latest/download/oranda-installer.sh | sh {{%- else %}} - curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/oranda/releases/download/v0.6.0-prerelease.2/oranda-installer.sh | sh + curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/oranda/releases/download/v0.6.0/oranda-installer.sh | sh {{%- endif %}} {{%- if site_dir %}} cd {{{ site_dir }}}