diff --git a/CHANGELOG.md b/CHANGELOG.md index a1d01a3..8e9c2d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## 0.3.3 (May 25th, 2024) - **added**: Add tests for: - `mod:blend` diff --git a/Cargo.lock b/Cargo.lock index 886f86e..c36f8b7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -764,7 +764,7 @@ dependencies = [ [[package]] name = "material-colors" -version = "0.3.2" +version = "0.3.3" dependencies = [ "ahash", "float-cmp", @@ -1328,18 +1328,18 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.199" +version = "1.0.203" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c9f6e76df036c77cd94996771fb40db98187f096dd0b9af39c6c6e452ba966a" +checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.199" +version = "1.0.203" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11bd257a6541e141e42ca6d24ae26f7714887b47e89aa739099104c7e4d3b7fc" +checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 45ad5cb..89061af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "material-colors" -version = "0.3.2" +version = "0.3.3" edition = "2021" description = "Up-to-date material-color-utilities port" documentation = "https://docs.rs/material-colors" @@ -15,7 +15,7 @@ categories = ["graphics"] ahash = "0.8.11" indexmap = "2.2.6" images = { package = "image", version = "0.25.1", optional = true } -serde = { version = "1.0.199", features = ["derive"], optional = true } +serde = { version = "1.0.203", features = ["derive"], optional = true } [features] image = ["dep:images"]