Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed Jan 4, 2023
1 parent 0175e61 commit f3f6215
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 13 deletions.
2 changes: 1 addition & 1 deletion ntex-grpc-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntex-grpc-derive"
version = "0.3.0-beta.0"
version = "0.3.0"
license = "MIT"
authors = ["Nikolay Kim <[email protected]>"]
repository = "https://github.com/ntex-rs/ntex-grpc"
Expand Down
4 changes: 4 additions & 0 deletions ntex-grpc/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes

## [0.3.0] - 2023-01-04

* 0.3 Release

## [0.3.0-beta.0] - 2022-12-28

* Use GAT for Transport trait
Expand Down
24 changes: 12 additions & 12 deletions ntex-grpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntex-grpc"
version = "0.3.0-beta.0"
version = "0.3.0"
license = "MIT"
authors = ["Nikolay Kim <[email protected]>"]
description = "GRPC Client/Server framework"
Expand All @@ -16,15 +16,15 @@ name = "ntex_grpc"
path = "src/lib.rs"

[dependencies]
ntex-h2 = "0.2.0-beta.0"
ntex-http = "0.1.6"
ntex-connect = "0.2.0-beta.0"
ntex-io = "0.2.0-beta.0"
ntex-util = "0.2.0-beta.0"
ntex-bytes = "0.1.17"
ntex-service = "1.0.0-beta.0"
ntex-h2 = "0.2.0"
ntex-http = "0.1.9"
ntex-connect = "0.2.0"
ntex-io = "0.2.0"
ntex-util = "0.2.0"
ntex-bytes = "0.1.18"
ntex-service = "1.0.0"
ntex-rt = "0.4"
ntex-grpc-derive = "0.3.0-beta.0"
ntex-grpc-derive = "0.3.0"

log = "0.4"
thiserror = "1.0"
Expand All @@ -33,6 +33,6 @@ pin-project-lite = "0.2"
[dev-dependencies]
env_logger = { version = "0.10", default-features = false }
openssl = "0.10"
ntex = { version = "0.6.0-beta.0", features = ["openssl", "tokio"] }
ntex-tls = { version = "0.2.0-beta.0", features = ["openssl"] }
ntex-connect = { version = "0.2.0-beta.0", features = ["openssl", "tokio"] }
ntex = { version = "0.6.0", features = ["openssl", "tokio"] }
ntex-tls = { version = "0.2.0", features = ["openssl"] }
ntex-connect = { version = "0.2.0", features = ["openssl", "tokio"] }

0 comments on commit f3f6215

Please sign in to comment.