From ff739723a0754254e6d5c6d1b7801ddc42f3f593 Mon Sep 17 00:00:00 2001 From: Mads Hougesen Date: Wed, 2 Oct 2024 16:10:53 +0200 Subject: [PATCH] chore: bump version to v0.0.17 --- CHANGELOG.md | 7 ++++++- Cargo.lock | 10 +++++----- Cargo.toml | 10 +++++----- 3 files changed, 16 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 745fbb0..4d64342 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -#### [Unreleased](https://github.com/hougesen/hitt/compare/v0.0.15...HEAD) +#### [Unreleased](https://github.com/hougesen/hitt/compare/v0.0.16...HEAD) + +#### [v0.0.16](https://github.com/hougesen/hitt/compare/v0.0.15...v0.0.16) + +> 2 October 2024 - build(deps): bump clap from 4.5.18 to 4.5.19 [`#374`](https://github.com/hougesen/hitt/pull/374) - build(deps-dev): bump @nuxt/devtools from 1.4.1 to 1.5.1 in /docs [`#371`](https://github.com/hougesen/hitt/pull/371) @@ -23,6 +27,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - build(deps): bump clap from 4.5.17 to 4.5.18 [`#360`](https://github.com/hougesen/hitt/pull/360) - build(deps): bump clap_complete from 4.5.26 to 4.5.28 [`#359`](https://github.com/hougesen/hitt/pull/359) - build(deps): bump ignore from 0.4.22 to 0.4.23 [`#358`](https://github.com/hougesen/hitt/pull/358) +- build: update peer deps [`adaebb8`](https://github.com/hougesen/hitt/commit/adaebb8f8095bf0c436aabab8b974222dad85e6b) - chore: bump dev version to v0.0.16 [`1034408`](https://github.com/hougesen/hitt/commit/1034408a5c396eccb25c363c8b12a43dcef2b6a9) #### [v0.0.15](https://github.com/hougesen/hitt/compare/v0.0.14...v0.0.15) diff --git a/Cargo.lock b/Cargo.lock index dd4eddf..45b77f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -609,7 +609,7 @@ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" [[package]] name = "hitt" -version = "0.0.16" +version = "0.0.17" dependencies = [ "clap", "clap_complete", @@ -628,7 +628,7 @@ dependencies = [ [[package]] name = "hitt-formatter" -version = "0.0.16" +version = "0.0.17" dependencies = [ "jsonformat", "mime", @@ -636,7 +636,7 @@ dependencies = [ [[package]] name = "hitt-parser" -version = "0.0.16" +version = "0.0.17" dependencies = [ "http", "once_cell", @@ -644,7 +644,7 @@ dependencies = [ [[package]] name = "hitt-request" -version = "0.0.16" +version = "0.0.17" dependencies = [ "hitt-parser", "http", @@ -654,7 +654,7 @@ dependencies = [ [[package]] name = "hitt-sse" -version = "0.0.16" +version = "0.0.17" dependencies = [ "eventsource-stream", "futures", diff --git a/Cargo.toml b/Cargo.toml index 9420801..81ce8bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ exclude = ["docs", "examples"] resolver = "2" [workspace.package] -version = "0.0.16" +version = "0.0.17" authors = ["Mads Hougesen "] edition = "2021" license = "MIT" @@ -34,10 +34,10 @@ clap_complete = { version = "4.5.29" } crossterm = { version = "0.28.1" } eventsource-stream = { version = "0.2.3" } futures = { version = "0.3.30" } -hitt-formatter = { path = "hitt-formatter", version = "0.0.16" } -hitt-parser = { path = "hitt-parser", version = "0.0.16" } -hitt-request = { path = "hitt-request", version = "0.0.16" } -hitt-sse = { path = "hitt-sse", version = "0.0.16" } +hitt-formatter = { path = "hitt-formatter", version = "0.0.17" } +hitt-parser = { path = "hitt-parser", version = "0.0.17" } +hitt-request = { path = "hitt-request", version = "0.0.17" } +hitt-sse = { path = "hitt-sse", version = "0.0.17" } http = { version = "1.1.0" } ignore = { version = "0.4.23" } jsonformat = { version = "2.0.0" }