Skip to content

Commit

Permalink
release v0.5.0-rc.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexilee committed Mar 28, 2020
1 parent e42963a commit e705501
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 11 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,18 @@ jobs:
registryName: roa
path: roa
publishPath: /target/package
- name: roa-diesel
registryName: roa-diesel
path: roa-diesel
publishPath: /target/package
- name: roa-pg
registryName: roa-pg
path: roa-pg
publishPath: /target/package
- name: roa-tokio
registryName: roa-tokio
path: roa-tokio
publishPath: /target/package
steps:
- uses: actions/checkout@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion roa-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "roa-core"
version = "0.5.0-rc.2"
version = "0.5.0-rc.3"
authors = ["Hexilee <i@hexilee.me>"]
edition = "2018"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion roa-diesel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rustdoc-args = ["--cfg", "feature=\"docs\""]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
roa = { path = "../roa", version = "0.5.0-rc", default-features = false }
roa = { path = "../roa", version = "0.5.0-rc.3", default-features = false }
diesel = { version = "1.4", features = ["extras"] }
r2d2 = "0.8"

Expand Down
6 changes: 3 additions & 3 deletions roa-multipart/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "roa-multipart"
version = "0.5.0-rc.2"
version = "0.5.0-rc.3"
authors = ["Hexilee <i@hexilee.me>"]
edition = "2018"
license = "MIT"
Expand All @@ -16,15 +16,15 @@ categories = ["network-programming", "asynchronous",
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
roa-core = { path = "../roa-core", version = "0.5.0-rc" }
roa-core = { path = "../roa-core", version = "0.5.0-rc.3" }
hyper = { version = "0.13", default-features = false, features = ["stream"] }
bytes = "0.5"
actix-http = "1.0"
actix-multipart = "0.2"
futures = "0.3"

[dev-dependencies]
roa = { path = "../roa", version = "0.5.0-rc", features = ["router"] }
roa = { path = "../roa", version = "0.5.0-rc.3", features = ["router"] }
tokio = { version = "0.2", features = ["full"] }
reqwest = { git = "https://github.com/Hexilee/reqwest.git", version = "0.10" }
async-std = "1.5"
Expand Down
4 changes: 2 additions & 2 deletions roa-pg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ rustdoc-args = ["--cfg", "feature=\"docs\""]
[dependencies]
bytes = "0.5.3"
futures = "0.3.4"
roa = { path = "../roa", version = "0.5.0-rc", default-features = false, features = ["tcp"] }
roa = { path = "../roa", version = "0.5.0-rc.3", default-features = false, features = ["tcp"] }
tokio-postgres = { version = "0.5.2", default-features = false }
tokio = "0.2.13"
async-std = "1.5"
Expand All @@ -29,7 +29,7 @@ webpki = "0.21.2"

[dev-dependencies]
async-std = { version = "1.5", features = ["attributes"] }
roa = { path = "../roa", version = "0.5.0-rc" }
roa = { path = "../roa", version = "0.5.0-rc.3" }

[features]
docs = ["roa/docs"]
4 changes: 2 additions & 2 deletions roa-tokio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ rustdoc-args = ["--cfg", "feature=\"docs\""]

[dependencies]
tokio = { version = "0.2", features = ["full"] }
roa = { path = "../roa", version = "0.5.0-rc", default-features = false }
roa = { path = "../roa", version = "0.5.0-rc.3", default-features = false }
log = "0.4"
futures = "0.3"

[dev-dependencies]
roa = { path = "../roa", version = "0.5.0-rc" }
roa = { path = "../roa", version = "0.5.0-rc.3" }
reqwest = "0.10"

[features]
Expand Down
4 changes: 2 additions & 2 deletions roa/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "roa"
version = "0.5.0-rc.2"
version = "0.5.0-rc.3"
authors = ["Hexilee <i@hexilee.me>"]
edition = "2018"
license = "MIT"
Expand Down Expand Up @@ -36,7 +36,7 @@ headers = "0.3.1"
tokio = "0.2.11"
lazy_static = "1.4.0"
hyper = { version = "0.13", default-features = false, features = ["stream"] }
roa-core = { path = "../roa-core", version = "0.5.0-rc" }
roa-core = { path = "../roa-core", version = "0.5.0-rc.3" }

async-std = { version = "1.5", optional = true }
cookie = { version = "0.13", features = ["percent-encode"], optional = true }
Expand Down

0 comments on commit e705501

Please sign in to comment.