Skip to content

Commit

Permalink
release 0.2.0 (#149)
Browse files Browse the repository at this point in the history
feat: new SDK implementation

new SDK implementation

feat: `publish` API implemented

PubNub `publish` API implemented

feat: `access` API implemented

PubNub `access manager` API implemented
  • Loading branch information
Xavrax authored Jun 5, 2023
1 parent 1904903 commit e63633f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 13 deletions.
16 changes: 9 additions & 7 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
name: rust
version: 0.0.0
version: 0.2.0
schema: 1
scm: github.com/pubnub/rust
files: []
changelog:
- date: 2022-12-12
version: 0.0.0
changelog:
- date: 2023-06-05
version: 0.2.0
changes:
- type: feature
text: "Add `publish` endpoint support."
text: "New SDK implementation."
- type: feature
text: "Add `pam` endpoints support."
text: "PubNub `publish` API implemented."
- type: feature
text: "PubNub `access manager` API implemented."
- type: feature
text: "Add `parse_token` for authorization token debug."
sdks:
Expand Down Expand Up @@ -85,4 +87,4 @@ supported-platforms:
- WebAssembly
- Embedded systems
- More information: https://doc.rust-lang.org/nightly/rustc/platform-support.html
- and https://github.com/pubnub/rust#limitations
- and https://github.com/pubnub/rust#limitations
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "pubnub"
version = "0.0.0"
version = "0.2.0"
edition = "2021"
license = "MIT"
authors = ["PubNub <[email protected]>"]
description = "PubNub SDK for Rust"
repository = "https://github.com/pubnub/rust"
documentation = "https://docs.rs/pubnub" # TODO: add docs and connect with pubnub docs
documentation = "https://docs.rs/pubnub/latest/pubnub"
homepage = "https://www.pubnub.com"
categories = ["api-bindings", "asynchronous", "network-programming", "wasm"]
build = "build.rs"
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,6 @@ pubnub = { version = "0.0.0", features = ["parse_token"] }

## Documentation

:warning: This SDK is a work in progress! **The links below may not work** :warning:

* [API reference for Rust](https://www.pubnub.com/docs/sdks/rust)
* [Rust docs](https://www.docs.rs/pubnub/latest/pubnub)

Expand Down
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,6 @@
//!
//! ## Documentation
//!
//! :warning: This SDK is a work in progress! **The links below may not work** :warning:
//!
//! * [API reference for Rust](https://www.pubnub.com/docs/sdks/rust)
//! * [Rust docs](https://www.docs.rs/pubnub/latest/pubnub)
//!
Expand Down

0 comments on commit e63633f

Please sign in to comment.