From 2350665b958dbbc474808a300b9f1c32ca681284 Mon Sep 17 00:00:00 2001 From: Raphael Nestler Date: Wed, 3 Jan 2024 17:06:57 +0100 Subject: [PATCH 1/4] Upgrade parse-display to 0.7 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e58840c..ec296fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ serde = { version = "1.0.126", features = ["derive"] } serde_json = "1.0.64" hyper = { version = "0.14.4", features = ["full"] } hyper-tls = "0.5.0" -parse-display = "0.6.0" +parse-display = "0.7.0" [dev_dependencies] tokio = { version = "1.3.0", features = ["macros", "rt-multi-thread"] } From 30fd91bf1df3ac9ca069ce9f0d70da30feacd517 Mon Sep 17 00:00:00 2001 From: Raphael Nestler Date: Wed, 3 Jan 2024 17:07:09 +0100 Subject: [PATCH 2/4] Upgrade to parse-display 0.8 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ec296fb..1b8cfab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ serde = { version = "1.0.126", features = ["derive"] } serde_json = "1.0.64" hyper = { version = "0.14.4", features = ["full"] } hyper-tls = "0.5.0" -parse-display = "0.7.0" +parse-display = "0.8.2" [dev_dependencies] tokio = { version = "1.3.0", features = ["macros", "rt-multi-thread"] } From 2916440f5a2a6fbac5ca2bc4935acb9d4b08ac34 Mon Sep 17 00:00:00 2001 From: Raphael Nestler Date: Wed, 3 Jan 2024 17:09:22 +0100 Subject: [PATCH 3/4] Mention parse-display update in CHANGELOG --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e00be52..f59b388 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ 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] + +### Changed + + * Update parse-display dependency to 0.8 + ## [0.3.0] - 2023-04-04 ### Changed From c6a6315301c2eb381d7f929646d10576750227b5 Mon Sep 17 00:00:00 2001 From: Raphael Nestler Date: Wed, 3 Jan 2024 17:25:33 +0100 Subject: [PATCH 4/4] Bump MSRV to 1.65 due to dependency changes --- .github/workflows/ci.yml | 2 +- CHANGELOG.md | 1 + Cargo.toml | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2401319..1c99798 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: - toolchain: 1.58 + toolchain: 1.65 override: true - name: Run build uses: actions-rs/cargo@v1 diff --git a/CHANGELOG.md b/CHANGELOG.md index f59b388..91cc805 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed * Update parse-display dependency to 0.8 + * Bump MSRV to 1.65 ## [0.3.0] - 2023-04-04 diff --git a/Cargo.toml b/Cargo.toml index 1b8cfab..e33e5c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,7 @@ version = "0.3.0" authors = ["Raphael Nestler "] license = "MIT OR Apache-2.0" edition = "2018" +rust-version = "1.65" description = "Access the yts.mx API" categories = ["api-bindings"] repository = "https://github.com/rnestler/yts-api-rs"