Skip to content

Commit

Permalink
release: 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
joshstoik1 committed Nov 28, 2024
2 parents 2fd8eea + ac889cb commit ffe2234
Show file tree
Hide file tree
Showing 7 changed files with 435 additions and 388 deletions.
173 changes: 89 additions & 84 deletions CREDITS.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions guff/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "guff"
version = "0.5.2"
version = "0.5.3"
license = "WTFPL"
authors = ["Josh Stoik <josh@blobfolio.com>"]
edition = "2021"
Expand Down Expand Up @@ -70,7 +70,7 @@ argyle = "0.10.*"

[dependencies]
argyle = "0.10.*"
fyi_msg = "1.1.*"
fyi_msg = "1.3.*"
write_atomic = "0.5.*"

[dependencies.guff_css]
Expand Down
4 changes: 2 additions & 2 deletions guff/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ use std::path::Path;

/// # Main.
fn main() {
match _main() {
match main__() {
Ok(()) => {},
Err(GuffError::PrintVersion) => {
println!(concat!("Guff v", env!("CARGO_PKG_VERSION")));
Expand All @@ -78,7 +78,7 @@ fn main() {

#[inline]
/// # Actual Main.
fn _main() -> Result<(), GuffError> {
fn main__() -> Result<(), GuffError> {
// Parse CLI arguments.
let args = argyle::args()
.with_keywords(include!(concat!(env!("OUT_DIR"), "/argyle.rs")));
Expand Down
10 changes: 10 additions & 0 deletions guff_css/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@



## [0.5.3](https://github.com/Blobfolio/guff/releases/tag/v0.5.3) - 2024-11-28

### Changed

* Bump `dactyl` to `0.8`
* Bump `lightningcss` to `alpha61`
* Bump `trimothy` to `0.6`



## [0.5.2](https://github.com/Blobfolio/guff/releases/tag/v0.5.2) - 2024-11-04

### Changed
Expand Down
10 changes: 5 additions & 5 deletions guff_css/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "guff_css"
version = "0.5.2"
version = "0.5.3"
license = "WTFPL"
authors = ["Josh Stoik <josh@blobfolio.com>"]
edition = "2021"
Expand All @@ -15,21 +15,21 @@ default-target = "x86_64-unknown-linux-gnu"
targets = [ "x86_64-unknown-linux-gnu", "x86_64-apple-darwin" ]

[dependencies]
dactyl = "0.7.*"
dactyl = "0.8.*"
oxford_join = "0.4.*"
trimothy = "0.3.*"
trimothy = "0.6.*"

[dependencies.grass]
version = "=0.13.4"
default-features = false

[dependencies.lightningcss]
version = "=1.0.0-alpha.60"
version = "=1.0.0-alpha.61"
default-features = false
features = [ "grid" ]

[build-dependencies]
dactyl = "0.7.*"
dactyl = "0.8.*"
oxford_join = "0.4.*"

[build-dependencies.minreq]
Expand Down
Loading

0 comments on commit ffe2234

Please sign in to comment.