Skip to content

Commit

Permalink
Upgrade dependency, changelog & readme
Browse files Browse the repository at this point in the history
  • Loading branch information
kushudai committed Aug 24, 2023
1 parent 842b812 commit bad6609
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/format-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
format-code:
runs-on: "ubuntu-latest"
container: rust:1.71.0
container: rust:1.72.0

steps:
- name: Checkout the code on merge
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
lint:
runs-on: "ubuntu-latest"
container: rust:1.71.0
container: rust:1.72.0

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
features: ["", "--no-default-features --features rustls-native"]
runs-on: "ubuntu-latest"
container: rust:1.71.0
container: rust:1.72.0

steps:
- uses: actions/checkout@v2
Expand All @@ -26,7 +26,7 @@ jobs:
matrix:
features: ["", "--no-default-features --features rustls-native"]
runs-on: "ubuntu-latest"
container: rust:1.71.0
container: rust:1.72.0
services:
consul:
image: consul:1.11.11
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
test:
runs-on: ubuntu-latest
container: rust:1.71.0
container: rust:1.72.0
services:
consul:
image: consul:1.11.11
Expand All @@ -25,7 +25,7 @@ jobs:

dry-run:
runs-on: ubuntu-latest
container: rust:1.71.0
container: rust:1.72.0

steps:
- uses: actions/checkout@v2
Expand All @@ -36,7 +36,7 @@ jobs:
publish:
needs: [test, dry-run]
runs-on: ubuntu-latest
container: rust:1.71.0
container: rust:1.72.0
environment: crates-publish

steps:
Expand Down
16 changes: 8 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## Unreleased

## 0.4.0 - 2023-08-25

### Changed

- `opentelemetry` updated to version `0.20` from `0.19`.

## 0.3.0 - 2023-06-19

### Added

- `rustls-native` (default), and `rustls-webpki` features to allow usage of rustls for the https client.
Expand All @@ -21,14 +29,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- `smart_default` updated to `0.7` from `0.6`.
- `ureq` updated to `2` from `1.5.4`.

### Deprecated

### Removed

### Fixed

### Security

## 0.2.3 - 2022-08-24

- Add `datacenter` field to `Node`
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "rs-consul"
version = "0.3.0"
version = "0.4.0"
authors = ["Roblox"]
edition = "2018"
edition = "2021"
description = "This crate provides access to a set of strongly typed apis to interact with consul (https://www.consul.io/)"
readme = "README.md"
repository = "https://github.com/Roblox/rs-consul"
Expand All @@ -24,7 +24,7 @@ http = "0.2"
hyper = { version = "0.14", features = ["full"] }
hyper-rustls = { version = "0.24" }
lazy_static = { version = "1", optional = true }
opentelemetry = { version = "0.19", features = ["rt-tokio"], optional = true }
opentelemetry = { version = "0.20", features = ["rt-tokio"], optional = true }
prometheus = { version = "0.13", optional = true }
quick-error = "2"
serde = { version = "1.0", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Simply include the rs-consul in your Cargo dependencies.

```toml
[dependencies]
rs-consul = "0.3.0"
rs-consul = "0.4.0"
```

## Development
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.71
1.72

0 comments on commit bad6609

Please sign in to comment.