Skip to content

Commit e63633f

Browse files
authored
release 0.2.0 (#149)
feat: new SDK implementation new SDK implementation feat: `publish` API implemented PubNub `publish` API implemented feat: `access` API implemented PubNub `access manager` API implemented
1 parent 1904903 commit e63633f

File tree

4 files changed

+11
-13
lines changed

4 files changed

+11
-13
lines changed

.pubnub.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
name: rust
2-
version: 0.0.0
2+
version: 0.2.0
33
schema: 1
44
scm: github.com/pubnub/rust
55
files: []
6-
changelog:
7-
- date: 2022-12-12
8-
version: 0.0.0
6+
changelog:
7+
- date: 2023-06-05
8+
version: 0.2.0
99
changes:
1010
- type: feature
11-
text: "Add `publish` endpoint support."
11+
text: "New SDK implementation."
1212
- type: feature
13-
text: "Add `pam` endpoints support."
13+
text: "PubNub `publish` API implemented."
14+
- type: feature
15+
text: "PubNub `access manager` API implemented."
1416
- type: feature
1517
text: "Add `parse_token` for authorization token debug."
1618
sdks:
@@ -85,4 +87,4 @@ supported-platforms:
8587
- WebAssembly
8688
- Embedded systems
8789
- More information: https://doc.rust-lang.org/nightly/rustc/platform-support.html
88-
- and https://github.com/pubnub/rust#limitations
90+
- and https://github.com/pubnub/rust#limitations

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "pubnub"
3-
version = "0.0.0"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "MIT"
66
authors = ["PubNub <[email protected]>"]
77
description = "PubNub SDK for Rust"
88
repository = "https://github.com/pubnub/rust"
9-
documentation = "https://docs.rs/pubnub" # TODO: add docs and connect with pubnub docs
9+
documentation = "https://docs.rs/pubnub/latest/pubnub"
1010
homepage = "https://www.pubnub.com"
1111
categories = ["api-bindings", "asynchronous", "network-programming", "wasm"]
1212
build = "build.rs"

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,6 @@ pubnub = { version = "0.0.0", features = ["parse_token"] }
107107

108108
## Documentation
109109

110-
:warning: This SDK is a work in progress! **The links below may not work** :warning:
111-
112110
* [API reference for Rust](https://www.pubnub.com/docs/sdks/rust)
113111
* [Rust docs](https://www.docs.rs/pubnub/latest/pubnub)
114112

src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,6 @@
110110
//!
111111
//! ## Documentation
112112
//!
113-
//! :warning: This SDK is a work in progress! **The links below may not work** :warning:
114-
//!
115113
//! * [API reference for Rust](https://www.pubnub.com/docs/sdks/rust)
116114
//! * [Rust docs](https://www.docs.rs/pubnub/latest/pubnub)
117115
//!

0 commit comments

Comments
 (0)