Skip to content

Commit

Permalink
Update versions for 2.0.1 tag/release (#489)
Browse files Browse the repository at this point in the history
  • Loading branch information
sreeise authored Aug 11, 2024
1 parent b5ca8ae commit 17050b9
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-rs-sdk"
version = "2.0.0"
version = "2.0.1"
authors = ["sreeise"]
edition = "2021"
readme = "README.md"
Expand Down Expand Up @@ -37,10 +37,10 @@ serde = { version = "1", features = ["derive"] }
serde_json = "1"
url = "2"

graph-oauth = { path = "./graph-oauth", version = "2.0.0", default-features=false }
graph-http = { path = "./graph-http", version = "2.0.0", default-features=false }
graph-error = { path = "./graph-error", version = "0.3.0" }
graph-core = { path = "./graph-core", version = "2.0.0", default-features=false }
graph-oauth = { path = "./graph-oauth", version = "2.0.1", default-features=false }
graph-http = { path = "./graph-http", version = "2.0.1", default-features=false }
graph-error = { path = "./graph-error", version = "0.3.1" }
graph-core = { path = "./graph-core", version = "2.0.1", default-features=false }

# When updating or adding new features to this or dependent crates run
# cargo tree -e features -i graph-rs-sdk
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# graph-rs-sdk

![Build](https://github.com/sreeise/graph-rs-sdk/actions/workflows/build.yml/badge.svg)
[![Static Badge](https://img.shields.io/badge/crates.io-2.0.0-blue?style=for-the-badge&link=https%3A%2F%2Fcrates.io%2Fcrates%2Fgraph-rs-sdk)](https://crates.io/crates/graph-rs-sdk)
[![Static Badge](https://img.shields.io/badge/crates.io-2.0.1-blue?style=for-the-badge&link=https%3A%2F%2Fcrates.io%2Fcrates%2Fgraph-rs-sdk)](https://crates.io/crates/graph-rs-sdk)

### Rust SDK Client for Microsoft Graph and Microsoft Identity Platform

### Available on [crates.io](https://crates.io/crates/graph-rs-sdk/2.0.0) - v2.0.0 - Latest Stable Version
### Available on [crates.io](https://crates.io/crates/graph-rs-sdk/2.0.1) - v2.0.1 - Latest Stable Version

#### Feature Overview:

Expand All @@ -25,7 +25,7 @@ And much more. See [Features](#features) for a more comprehensive list of featur
See [Cargo Feature Flags](#cargo-feature-flags) for features that can be enabled in the crate.

```toml
graph-rs-sdk = "2.0.0"
graph-rs-sdk = "2.0.1"
tokio = { version = "1.25.0", features = ["full"] }
```

Expand Down Expand Up @@ -129,7 +129,7 @@ The crate can do both an async and blocking requests.

#### Async Client (default)

graph-rs-sdk = "2.0.0"
graph-rs-sdk = "2.0.1"
tokio = { version = "1.25.0", features = ["full"] }

#### Example
Expand Down Expand Up @@ -161,7 +161,7 @@ async fn main() -> GraphResult<()> {
To use the blocking client use the `into_blocking()` method. You should not
use `tokio` when using the blocking client.

graph-rs-sdk = "2.0.0"
graph-rs-sdk = "2.0.1"

#### Example
```rust
Expand Down
4 changes: 2 additions & 2 deletions graph-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-core"
version = "2.0.0"
version = "2.0.1"
authors = ["sreeise"]
edition = "2021"
license = "MIT"
Expand All @@ -27,7 +27,7 @@ remain = "0.2.6"
tracing = "0.1.37"
url = { version = "2", features = ["serde"] }

graph-error = { version = "0.3.0", path = "../graph-error" }
graph-error = { version = "0.3.1", path = "../graph-error" }

[features]
default = ["native-tls"]
Expand Down
2 changes: 1 addition & 1 deletion graph-error/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-error"
version = "0.3.0"
version = "0.3.1"
authors = ["sreeise"]
edition = "2021"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion graph-http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-http"
version = "2.0.0"
version = "2.0.1"
authors = ["sreeise"]
edition = "2021"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion graph-oauth/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-oauth"
version = "2.0.0"
version = "2.0.1"
authors = ["sreeise"]
edition = "2021"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions graph-oauth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ for Microsoft Identity Platform or by using [graph-rs-sdk](https://crates.io/cra
For async:

```toml
graph-oauth = "2.0.0-beta.0"
graph-oauth = "2.0.1"
tokio = { version = "1.25.0", features = ["full"] }
```

For blocking:

```toml
graph-oauth = "2.0.0-beta.0"
graph-oauth = "2.0.1"
```

### Feature Flags
Expand Down

0 comments on commit 17050b9

Please sign in to comment.