diff --git a/.github/workflows/format-code.yml b/.github/workflows/format-code.yml index 72ae708..1c5251f 100644 --- a/.github/workflows/format-code.yml +++ b/.github/workflows/format-code.yml @@ -8,7 +8,7 @@ on: jobs: format-code: runs-on: "ubuntu-latest" - container: rust:1.74 + container: rust:1.77 steps: - name: Checkout the code on merge diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 9784d00..297fb62 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,7 +9,7 @@ on: jobs: lint: runs-on: "ubuntu-latest" - container: rust:1.74 + container: rust:1.77 steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d070e22..911ca6f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,7 +26,7 @@ jobs: matrix: features: ["", "--no-default-features --features rustls-native"] runs-on: "ubuntu-latest" - container: rust:1.74 + container: rust:1.77 services: consul: image: consul:1.11.11 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 70f2e84..9841d9e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -6,7 +6,7 @@ on: jobs: test: runs-on: ubuntu-latest - container: rust:1.74 + container: rust:1.77 services: consul: image: consul:1.11.11 @@ -25,7 +25,7 @@ jobs: dry-run: runs-on: ubuntu-latest - container: rust:1.74 + container: rust:1.77 steps: - uses: actions/checkout@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index e5900ff..8afc7bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Unreleased +## 0.6.0 - 2024-04-01 + +### Changed + +- `opentelemetry` updated to version `0.22` from `0.21`. +- `base64` updated to version `0.22` from `0.21`. + ## 0.5.0 - 2023-11-20 ### Added diff --git a/Cargo.toml b/Cargo.toml index 132a345..c8a9841 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rs-consul" -version = "0.5.0" +version = "0.6.0" authors = ["Roblox"] edition = "2021" description = "This crate provides access to a set of strongly typed apis to interact with consul (https://www.consul.io/)" @@ -18,13 +18,13 @@ trace = ["dep:opentelemetry"] # keep this list sorted! [dependencies] -base64 = "0.21" +base64 = "0.22" futures = "0.3" http = "0.2" hyper = { version = "0.14", features = ["full"] } hyper-rustls = { version = "0.24" } lazy_static = { version = "1", optional = true } -opentelemetry = { version = "0.21", optional = true } +opentelemetry = { version = "0.22", optional = true } prometheus = { version = "0.13", optional = true } quick-error = "2" serde = { version = "1.0", features = ["derive"] } diff --git a/rust-toolchain b/rust-toolchain index 66acda6..f23daf4 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -1 +1 @@ -1.74 \ No newline at end of file +1.77 \ No newline at end of file