From fad8eb01c06bd605f74a7ec536b849831c9017b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Wed, 1 Nov 2023 14:54:52 +0100 Subject: [PATCH] minimq release --- CHANGELOG.md | 3 ++- Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02030f1..2ecb551 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,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.0] - 2023-11-01 * Handlers now take a fourth argument, `output_buffer`, where they can serialize their response into directly @@ -34,6 +34,7 @@ command is registered. Library initially released on crates.io +[0.3.0]: https://github.com/quartiq/minireq/releases/tag/v0.3.0 [0.2.0]: https://github.com/quartiq/minireq/releases/tag/v0.2.0 [0.1.1]: https://github.com/quartiq/minireq/releases/tag/v0.1.1 [0.1.0]: https://github.com/quartiq/minireq/releases/tag/v0.1.0 diff --git a/Cargo.toml b/Cargo.toml index e089aba..1f80a07 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minireq" -version = "0.2.0" +version = "0.3.0" edition = "2021" authors = ["Ryan Summers "] license = "MIT" @@ -10,7 +10,7 @@ categories = ["no-std", "config", "embedded", "parsing"] repository = "https://github.com/quartiq/minireq" [dependencies] -minimq = {git = "https://github.com/quartiq/minimq"} +minimq = { version = "0.8.0" } heapless = {version = "0.7", features = ["serde"] } log = "0.4" serde = { version = "1", features = ["derive"], default-features = false }