Skip to content

Commit

Permalink
release: 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
liv committed Dec 14, 2023
1 parent b5e8dc7 commit 11790dd
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:

Expand All @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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. <hello@axo.dev>"]
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion generate-css/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/config/style.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down
2 changes: 1 addition & 1 deletion templates/generate/web.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}}
Expand Down

0 comments on commit 11790dd

Please sign in to comment.