From aa9276f8cac915f1a0339e3dbc72e9b58bf67f9c Mon Sep 17 00:00:00 2001 From: Sascha Grunert Date: Fri, 5 Jul 2019 15:56:37 +0200 Subject: [PATCH] Update badges and bump versions (#357) Signed-off-by: Sascha Grunert --- Cargo.lock | 10 +++++----- Cargo.toml | 6 +++--- README.md | 9 +++++++-- backend/Cargo.toml | 9 ++++----- frontend/Cargo.toml | 11 +++++------ 5 files changed, 24 insertions(+), 21 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 955d08343..f121f82c4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2485,7 +2485,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "webapp" -version = "0.3.0" +version = "1.0.0" dependencies = [ "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2495,7 +2495,7 @@ dependencies = [ [[package]] name = "webapp-backend" -version = "0.1.0" +version = "1.0.0" dependencies = [ "actix 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", "actix-cors 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2521,12 +2521,12 @@ dependencies = [ "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", - "webapp 0.3.0", + "webapp 1.0.0", ] [[package]] name = "webapp-frontend" -version = "0.1.0" +version = "1.0.0" dependencies = [ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2534,7 +2534,7 @@ dependencies = [ "serde 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)", "stdweb 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "webapp 0.3.0", + "webapp 1.0.0", "yew 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "yew-router 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/Cargo.toml b/Cargo.toml index 14eff02fd..19f5f11e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,12 +4,12 @@ categories = ["web-programming"] description = "A web application completely written in Rust" documentation = "https://docs.rs/webapp" homepage = "https://github.com/saschagrunert/webapp.rs" -keywords = ["web", "app", "website", "webapp", "wasm", "webassembly"] +keywords = ["web", "app", "webapp", "wasm", "webassembly"] license = "MIT" name = "webapp" readme = "README.md" repository = "https://github.com/saschagrunert/webapp.rs" -version = "0.3.0" +version = "1.0.0" edition = "2018" [badges] @@ -20,7 +20,7 @@ maintenance = { status = "actively-developed" } [dependencies] diesel = { version = "1.4.2", optional = true } failure = "0.1.5" -serde = { version = "1.0.94", features = [ "derive" ]} +serde = { version = "1.0.94", features = ["derive"]} toml = "0.5.1" [features] diff --git a/README.md b/README.md index 38bd0d673..33724417c 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,15 @@ [![CircleCI](https://circleci.com/gh/saschagrunert/webapp.rs.svg?style=shield)](https://circleci.com/gh/saschagrunert/webapp.rs) [![Coverage](https://codecov.io/gh/saschagrunert/webapp.rs/branch/master/graph/badge.svg)](https://codecov.io/gh/saschagrunert/webapp.rs) -[![dependency status](https://deps.rs/repo/github/saschagrunert/webapp.rs/status.svg)](https://deps.rs/repo/github/saschagrunert/webapp.rs) -[![Doc](https://img.shields.io/badge/doc-webapp-orange.svg)](https://saschagrunert.github.io/webapp.rs/doc/webapp/index.html) +[![Deps](https://deps.rs/repo/github/saschagrunert/webapp.rs/status.svg)](https://deps.rs/repo/github/saschagrunert/webapp.rs) +[![Docs master](https://img.shields.io/badge/doc-master-orange.svg)](https://saschagrunert.github.io/webapp.rs/doc/webapp/index.html) +[![Docs release](https://docs.rs/webapp/badge.svg)](https://docs.rs/webapp) +[![Docs release backend](https://docs.rs/webapp-backend/badge.svg)](https://docs.rs/webapp-backend) +[![Docs release frontend](https://docs.rs/webapp-frontend/badge.svg)](https://docs.rs/webapp-frontend) [![License MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/saschagrunert/webapp.rs/blob/master/LICENSE) [![Crates.io](https://img.shields.io/crates/v/webapp.svg)](https://crates.io/crates/webapp) +[![Crates.io](https://img.shields.io/crates/v/webapp-backend.svg)](https://crates.io/crates/webapp-backend) +[![Crates.io](https://img.shields.io/crates/v/webapp-frontend.svg)](https://crates.io/crates/webapp-frontend) ## A web application completely written in Rust diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 1e932e882..a76a7f3bc 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -4,12 +4,11 @@ categories = ["web-programming"] description = "A web application completely written in Rust" documentation = "https://docs.rs/webapp" homepage = "https://github.com/saschagrunert/webapp.rs" -keywords = ["web", "app", "website", "webapp", "wasm", "webassembly"] +keywords = ["web", "app", "webapp", "wasm", "webassembly"] license = "MIT" name = "webapp-backend" -readme = "README.md" repository = "https://github.com/saschagrunert/webapp.rs" -version = "0.1.0" +version = "1.0.0" edition = "2018" [badges] @@ -43,9 +42,9 @@ log = "0.4.6" num_cpus = "1.10.1" openssl = "0.10.23" r2d2 = "0.8.5" -serde = { version = "1.0.94", features = [ "derive" ]} +serde = { version = "1.0.94", features = ["derive"]} serde_cbor = "0.10.0" time = "0.1.42" url = "1.7.2" uuid = { version = "0.7.4", features = ["v4"] } -webapp = { path = "..", features = ["backend"] } +webapp = { version = "1.0.0", path = "..", features = ["backend"] } diff --git a/frontend/Cargo.toml b/frontend/Cargo.toml index 97a33f9e7..f6f448282 100644 --- a/frontend/Cargo.toml +++ b/frontend/Cargo.toml @@ -4,12 +4,11 @@ categories = ["web-programming"] description = "A web application completely written in Rust" documentation = "https://docs.rs/webapp" homepage = "https://github.com/saschagrunert/webapp.rs" -keywords = ["web", "app", "website", "webapp", "wasm", "webassembly"] +keywords = ["web", "app", "webapp", "wasm", "webassembly"] license = "MIT" name = "webapp-frontend" -readme = "README.md" repository = "https://github.com/saschagrunert/webapp.rs" -version = "0.1.0" +version = "1.0.0" edition = "2018" [badges] @@ -25,13 +24,13 @@ path = "src/main.rs" failure = "0.1.5" sass-rs = "0.2.2" url = "1.7.2" -webapp = { path = ".." } +webapp = { version = "1.0.0", path = ".." } [dependencies] failure = "0.1.5" log = "0.4.6" -serde = { version = "1.0.94", features = [ "derive" ]} +serde = { version = "1.0.94", features = ["derive"]} stdweb = "0.4.17" -webapp = { path = ".." } +webapp = { version = "1.0.0", path = ".." } yew = { version = "0.6.0", features = ["cbor"] } yew-router = "0.2.0"