Skip to content

Commit 839fc5f

Browse files
committed
RSCBC-257: Bump SDK versions in Cargo files
1 parent be2c2ad commit 839fc5f

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
[![license](https://img.shields.io/github/license/couchbase/couchbase-jvm-clients?color=brightgreen)](https://opensource.org/licenses/Apache-2.0)
44

55
This repository contains the Couchbase Rust SDK.
6-
This project is currently in development and not yet production ready.
76

87
## Project Structure
98

@@ -75,7 +74,8 @@ Instead of committing directly to a maintenance branch, first commit to `main` a
7574

7675
## Documentation
7776

78-
Coming soon.
77+
[Couchbase documentation site](https://docs.couchbase.com/rust-sdk/current/hello-world/overview.html)
78+
[API reference documentation](https://docs.rs/couchbase/latest/couchbase/)
7979

8080
## Contributing
8181

sdk/couchbase-connstr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "couchbase-connstr"
3-
version = "1.0.0-beta.1"
3+
version = "1.0.0"
44
edition = "2021"
55
description = "Couchbase SDK connection string parsing and DNS resolution, not intended for direct use"
66
license = "Apache-2.0"

sdk/couchbase-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "couchbase-core"
3-
version = "1.0.0-beta.1"
3+
version = "1.0.0"
44
edition = "2021"
55
description = "Couchbase SDK core networking and protocol implementation, not intended for direct use"
66
license = "Apache-2.0"

sdk/couchbase/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "couchbase"
3-
version = "1.0.0-beta.1"
3+
version = "1.0.0"
44
edition = "2021"
5-
description = "The community supported Couchbase Rust SDK, currently in development"
5+
description = "The official Couchbase Rust SDK"
66
license = "Apache-2.0"
77
readme = "../../README.md"
88
keywords = ["couchbase", "database", "json", "nosql"]
@@ -26,8 +26,8 @@ serde_json = { version = "1.0", features = ["preserve_order"] }
2626
uuid = { version = "1.22", features = ["v4"] }
2727
webpki-roots = "1.0"
2828

29-
couchbase-connstr = { path = "../couchbase-connstr", version = "1.0.0-beta.1" }
30-
couchbase-core = { path = "../couchbase-core", default-features = false, version = "1.0.0-beta.1" }
29+
couchbase-connstr = { path = "../couchbase-connstr", version = "1.0.0" }
30+
couchbase-core = { path = "../couchbase-core", default-features = false, version = "1.0.0" }
3131

3232
tokio = { version = "1.50" }
3333
tokio-native-tls = { version = "0.3.1", optional = true }

sdk/protostellar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "protostellar"
3-
version = "1.0.0-beta.1"
3+
version = "1.0.0"
44
edition = "2021"
55
description = "Couchbase SDK couchbase2 protocol support, not intended for direct use"
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)