diff --git a/CHANGELOG.md b/CHANGELOG.md index 79582c3..993ea56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.1] - 2026-07-04 + +### Fixed + +- docs.rs build was failing: `#![feature(doc_auto_cfg)]` was merged into `doc_cfg` and removed as + of the nightly toolchain docs.rs builds with (rustc 1.92+). Switched to `#![feature(doc_cfg)]`, + the same fix already applied in `grixy` and `ixy` (`ixy` 0.6.1) for the identical reason. + ## [0.1.0] - 2026-07-04 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 6b2049b..2368f0e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -210,7 +210,7 @@ dependencies = [ [[package]] name = "gem" -version = "0.1.0" +version = "0.1.1" dependencies = [ "bytemuck", "libm", diff --git a/Cargo.toml b/Cargo.toml index 88ee87a..9ccde42 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ license = "MIT OR Apache-2.0" description = "Color representations and conversions" repository = "https://github.com/crates-lurey-io/gem" -version = "0.1.0" +version = "0.1.1" rust-version = "1.87" [lints.rust] diff --git a/src/lib.rs b/src/lib.rs index 5bc6af5..4cfd02f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -60,7 +60,7 @@ //! syntax (`rgb()`, `hsl()`, `oklch()` functional notation, etc.). #![cfg_attr(not(feature = "std"), no_std)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #[cfg(any(feature = "std", test))] extern crate std;