diff --git a/CHANGELOG.md b/CHANGELOG.md index 243ad1f..cfe70c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ 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). +## [0.3.1] - 2025-12-25 + +### Fixed + +- **Added `$crate` prefix to all internal macro invocations** ([#62](https://github.com/jiftechnify/valq/pull/62)) + +### Documentation + +- **Refined crate-level documentation** ([#63](https://github.com/jiftechnify/valq/pull/63)) + - Refined example code to showcase every feature in `valq` + ## [0.3.0] - 2025-12-17 ### Added diff --git a/Cargo.lock b/Cargo.lock index 146083c..783c97e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -195,7 +195,7 @@ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" [[package]] name = "valq" -version = "0.3.0" +version = "0.3.1" dependencies = [ "paste", "serde", diff --git a/Cargo.toml b/Cargo.toml index 471261e..13970dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "valq" -version = "0.3.0" +version = "0.3.1" authors = ["jiftechnify "] edition = "2021" license = "MIT"