Skip to content

Commit a7efa82

Browse files
authored
Prepare Rust crates for v1 release (#17)
1 parent 6e8b7c0 commit a7efa82

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

rust/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Add the following to your `Cargo.toml`:
2020

2121
```toml
2222
[dependencies]
23-
chainlink-data-streams-report = "0.1.0"
24-
chainlink-data-streams-sdk = { version = "0.1.0", features = ["full"] }
23+
chainlink-data-streams-report = "1.0.0"
24+
chainlink-data-streams-sdk = { version = "1.0.0", features = ["full"] }
2525
```
2626

2727
#### Features

rust/crates/report/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chainlink-data-streams-report"
3-
version = "0.0.1"
3+
version = "1.0.0"
44
edition = "2021"
55
description = "Chainlink Data Streams Report"
66
license = "MIT"

rust/crates/sdk/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chainlink-data-streams-sdk"
3-
version = "0.0.1"
3+
version = "1.0.0"
44
edition = "2021"
55
rust-version = "1.70"
66
description = "Chainlink Data Streams client SDK"
@@ -11,7 +11,7 @@ exclude = ["/target/*", "examples/*", "tests/*", "docs/*", "book/*"]
1111
keywords = ["chainlink"]
1212

1313
[dependencies]
14-
chainlink-data-streams-report = { path = "../report", version = "0.0.1" }
14+
chainlink-data-streams-report = { path = "../report", version = "1.0.0" }
1515
reqwest = { version = "0.11.20", features = ["json", "rustls-tls"] }
1616
tokio = { version = "1.29.1", features = ["full"] }
1717
tokio-tungstenite = { version = "0.20.1", features = [

rust/docs/guides/foundry.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,8 @@ version = "0.0.1"
217217
edition = "2021"
218218

219219
[dependencies]
220-
chainlink-data-streams-report = "0.1.0"
221-
chainlink-data-streams-sdk = { version = "0.1.0", features = ["rest"] }
220+
chainlink-data-streams-report = "1.0.0"
221+
chainlink-data-streams-sdk = { version = "1.0.0", features = ["rest"] }
222222
dotenv = "0.15"
223223
tokio = { version = "1", features = ["full"] }
224224

rust/docs/introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Add the following to your `Cargo.toml`:
2020

2121
```toml
2222
[dependencies]
23-
chainlink-data-streams-report = "0.1.0"
24-
chainlink-data-streams-sdk = { version = "0.1.0", features = ["full"] }
23+
chainlink-data-streams-report = "1.0.0"
24+
chainlink-data-streams-sdk = { version = "1.0.0", features = ["full"] }
2525
```
2626

2727
#### Features

0 commit comments

Comments
 (0)