From e705501ff30929f3c36f36c4b7c50a550ab968d8 Mon Sep 17 00:00:00 2001 From: Hexilee Date: Sat, 28 Mar 2020 16:02:00 +0800 Subject: [PATCH] release v0.5.0-rc.3 --- .github/workflows/release.yml | 12 ++++++++++++ roa-core/Cargo.toml | 2 +- roa-diesel/Cargo.toml | 2 +- roa-multipart/Cargo.toml | 6 +++--- roa-pg/Cargo.toml | 4 ++-- roa-tokio/Cargo.toml | 4 ++-- roa/Cargo.toml | 4 ++-- 7 files changed, 23 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 882616c..73fcd51 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: diff --git a/roa-core/Cargo.toml b/roa-core/Cargo.toml index 8a75dd5..f86c416 100644 --- a/roa-core/Cargo.toml +++ b/roa-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "roa-core" -version = "0.5.0-rc.2" +version = "0.5.0-rc.3" authors = ["Hexilee "] edition = "2018" license = "MIT" diff --git a/roa-diesel/Cargo.toml b/roa-diesel/Cargo.toml index 3b60fdc..7a853da 100644 --- a/roa-diesel/Cargo.toml +++ b/roa-diesel/Cargo.toml @@ -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" diff --git a/roa-multipart/Cargo.toml b/roa-multipart/Cargo.toml index dce46bc..fe3ea48 100644 --- a/roa-multipart/Cargo.toml +++ b/roa-multipart/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "roa-multipart" -version = "0.5.0-rc.2" +version = "0.5.0-rc.3" authors = ["Hexilee "] edition = "2018" license = "MIT" @@ -16,7 +16,7 @@ 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" @@ -24,7 +24,7 @@ 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" diff --git a/roa-pg/Cargo.toml b/roa-pg/Cargo.toml index 6d5af93..a7ab63c 100644 --- a/roa-pg/Cargo.toml +++ b/roa-pg/Cargo.toml @@ -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" @@ -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"] diff --git a/roa-tokio/Cargo.toml b/roa-tokio/Cargo.toml index fb0e110..c6aaba3 100644 --- a/roa-tokio/Cargo.toml +++ b/roa-tokio/Cargo.toml @@ -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] diff --git a/roa/Cargo.toml b/roa/Cargo.toml index f6d7291..8c9d4f3 100644 --- a/roa/Cargo.toml +++ b/roa/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "roa" -version = "0.5.0-rc.2" +version = "0.5.0-rc.3" authors = ["Hexilee "] edition = "2018" license = "MIT" @@ -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 }