diff --git a/CHANGELOG.md b/CHANGELOG.md index 51902645..6286cc62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,48 @@ # Changelog +## 0.1.1 - 2023-07-04 + +### Fixes + +- **Remove OpenSSL dependency - [ashleygwilliams]/[pr515], [geelen]/[i514]** + + If a release happens without an OpenSSL issue, does it really happen? In trying + to run `oranda build` on a beta image for Cloudflare Pages, an end user discovered + that we hadn't fully vanquished our dependency on OpenSSL. With this PR, we've + made 100% sure we have. + +- **Allow schema key in `oranda.json` - [Gankra], [pr506]** + + To improve the user experience of configuring oranda, we error on unexpected + keys in the `oranda.json` file- which will help people see typos and other + mistakes. However, this checking was over-eagerly erroring when folks added + a schema key so they could use VS Code's schema support. This PR makes an + exception for users including the "non-functional" (in oranda) schema key. + +- **Add fallback to macOS Intel artifacts if Apple Silicon detected, but no artifacts found - [Gankra], [pr511]** + + Platform support and detection is slightly more complicated on Apple/macOS + machines because Apple offers Rosetta2 which allows you to run binaries built + for older Intel-based systems on the new Apple Silicon ones (but not vice versa). + This PR updates the install widget's behavior to show artifacts built for + Apple Intel-based systems if it detects an Apple Silicon system but cannot find + any binaries built for Apple Silicon. + +- **Artifact table width on mobile - [SaraVieira], [pr505]** + + On mobile, the artifact table's width was forcing a scroll. We've updated the + CSS to fix this! + +[pr505]: https://github.com/axodotdev/oranda/pull/505 +[pr506]: https://github.com/axodotdev/oranda/pull/506 +[pr511]: https://github.com/axodotdev/oranda/pull/511 +[i514]: https://github.com/axodotdev/oranda/issues/514 +[pr515]: https://github.com/axodotdev/oranda/pull/515 +[ashleygwilliams]: https://github.com/ashleygwilliams +[Gankra]: https://github.com/Gankra +[geelen]: https://github.com/geelen +[SaraVieira]: https://github.com/SaraVieira + ## 0.1.0 - 2023-07-03 ### What is oranda? diff --git a/Cargo.lock b/Cargo.lock index 960a0ee3..3442d92d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2032,7 +2032,7 @@ dependencies = [ [[package]] name = "oranda" -version = "0.1.0" +version = "0.1.1" dependencies = [ "ammonia", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index b7f3cef1..2afa37ba 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.1.0" +version = "0.1.1" 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 2b8d03e2..b7053ebd 100644 --- a/oranda-css/package.json +++ b/oranda-css/package.json @@ -1,6 +1,6 @@ { "name": "oranda-css", - "version": "0.1.0", + "version": "0.1.1", "description": "", "main": "tailwind.config.js", "scripts": { diff --git a/src/config/style.rs b/src/config/style.rs index 90aafa44..ca9a39ef 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.1.0"; +pub const ORANDA_CSS_TAG: &str = "v0.1.1"; /// Config related to styling your page (complete version) #[derive(Debug)]