diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c26ffe..56ee2d9 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](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.1] - 2024-09-24 + +This is a bugfix release fixing compilation of the library with `default-features = false`. + +### Changed + +- Fix compilation of library with `default-features = false` ([commit](https://github.com/dmitry-markin/jutella/commit/3e9493f5ec67fea0cbc35467aa0789d3d5914add)) + ## [0.3.0] - 2024-09-24 This release introduces several new features and improvements. Key updates are: diff --git a/Cargo.lock b/Cargo.lock index f38c468..0f724b7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -703,7 +703,7 @@ dependencies = [ [[package]] name = "jutella" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 0b03416..aadbfb2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "jutella" description = "Chatbot API client library and CLI interface." license = "MIT" repository = "https://github.com/dmitry-markin/jutella" -version = "0.3.0" +version = "0.3.1" edition = "2021" [dependencies]