Skip to content

Commit 11790dd

Browse files
author
liv
committed
release: 0.6.0
1 parent b5e8dc7 commit 11790dd

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Changelog
22

3-
## Unreleased
3+
## 0.6.0 - 2023-12-14
44

55
### Features
66

77
- **axo Releases support** - [impl](https://github.com/axodotdev/oranda/pull/672)
88

9-
oranda how supports axo's homegrown release hosting service, axo Releases! At the time of drafting these notes,
9+
oranda now supports axo's homegrown release hosting service, axo Releases! At time of writing,
1010
axo Releases is still in closed beta, however, if you have access and want to try it out, you can set the following
1111
configuration parameter:
1212

@@ -26,7 +26,7 @@
2626
If you use oranda to work with a project that publishes multiple differently-named binaries, your install widget may
2727
end up looking very confusing, with lots of similarly-named tabs. Previously, your options were to set up a
2828
[workspace][workspace-docs], or to set the [`components.artifacts.match_package_names`][package-names] configuration
29-
setting. With this release, if you want to keep everything inside of a single website, the install widget will now
29+
setting. With this release, if you want to keep everything inside a single website, the install widget will now
3030
show the app names in the tabs, like this:
3131

3232
![picture of an app with lots of tabs and app names](https://i.imgur.com/K0NG2SQ.png)

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "oranda"
33
description = "🎁 generate beautiful landing pages for your projects"
44
repository = "https://github.com/axodotdev/oranda"
55
homepage = "https://opensource.axo.dev/oranda"
6-
version = "0.6.0-prerelease.2"
6+
version = "0.6.0"
77
edition = "2021"
88
authors = ["Axo Developer Co. <hello@axo.dev>"]
99
license = "MIT OR Apache-2.0"
@@ -56,7 +56,7 @@ pathdiff = { version = "0.2.1", features = ["camino"] }
5656
minijinja = { version = "1.0.3", features = ["loader", "preserve_order", "custom_syntax"] }
5757
include_dir = "0.7.3"
5858
slug = "0.1.4"
59-
oranda-generate-css = { version = "0.6.0-prerelease.1", path = "generate-css" }
59+
oranda-generate-css = { version = "0.6.0", path = "generate-css" }
6060
inquire = "0.6.2"
6161
url-escape = "0.1.1"
6262
rss = { version = "2.0.6", features = ["atom"] }

generate-css/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oranda-generate-css"
3-
version = "0.6.0-prerelease.2"
3+
version = "0.6.0"
44
description = "the part of oranda that generates CSS"
55
repository = "https://github.com/axodotdev/oranda"
66
homepage = "https://opensource.axo.dev/oranda"

src/config/style.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use crate::site::{markdown::SyntaxTheme, oranda_theme::OrandaTheme};
66

77
use super::ApplyValExt;
88

9-
pub const ORANDA_CSS_TAG: &str = "v0.6.0-prerelease.2";
9+
pub const ORANDA_CSS_TAG: &str = "v0.6.0";
1010

1111
/// Config related to styling your page (complete version)
1212
#[derive(Debug, Clone)]

templates/generate/web.yml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
{{%- if use_latest_oranda %}}
7070
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/oranda/releases/latest/download/oranda-installer.sh | sh
7171
{{%- else %}}
72-
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/oranda/releases/download/v0.6.0-prerelease.2/oranda-installer.sh | sh
72+
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/oranda/releases/download/v0.6.0/oranda-installer.sh | sh
7373
{{%- endif %}}
7474
{{%- if site_dir %}}
7575
cd {{{ site_dir }}}

0 commit comments

Comments
 (0)