Skip to content

Commit aa9276f

Browse files
Update badges and bump versions (#357)
Signed-off-by: Sascha Grunert <mail@saschagrunert.de>
1 parent 01242c6 commit aa9276f

File tree

5 files changed

+24
-21
lines changed

5 files changed

+24
-21
lines changed

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ categories = ["web-programming"]
44
description = "A web application completely written in Rust"
55
documentation = "https://docs.rs/webapp"
66
homepage = "https://github.com/saschagrunert/webapp.rs"
7-
keywords = ["web", "app", "website", "webapp", "wasm", "webassembly"]
7+
keywords = ["web", "app", "webapp", "wasm", "webassembly"]
88
license = "MIT"
99
name = "webapp"
1010
readme = "README.md"
1111
repository = "https://github.com/saschagrunert/webapp.rs"
12-
version = "0.3.0"
12+
version = "1.0.0"
1313
edition = "2018"
1414

1515
[badges]
@@ -20,7 +20,7 @@ maintenance = { status = "actively-developed" }
2020
[dependencies]
2121
diesel = { version = "1.4.2", optional = true }
2222
failure = "0.1.5"
23-
serde = { version = "1.0.94", features = [ "derive" ]}
23+
serde = { version = "1.0.94", features = ["derive"]}
2424
toml = "0.5.1"
2525

2626
[features]

README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@
22

33
[![CircleCI](https://circleci.com/gh/saschagrunert/webapp.rs.svg?style=shield)](https://circleci.com/gh/saschagrunert/webapp.rs)
44
[![Coverage](https://codecov.io/gh/saschagrunert/webapp.rs/branch/master/graph/badge.svg)](https://codecov.io/gh/saschagrunert/webapp.rs)
5-
[![dependency status](https://deps.rs/repo/github/saschagrunert/webapp.rs/status.svg)](https://deps.rs/repo/github/saschagrunert/webapp.rs)
6-
[![Doc](https://img.shields.io/badge/doc-webapp-orange.svg)](https://saschagrunert.github.io/webapp.rs/doc/webapp/index.html)
5+
[![Deps](https://deps.rs/repo/github/saschagrunert/webapp.rs/status.svg)](https://deps.rs/repo/github/saschagrunert/webapp.rs)
6+
[![Docs master](https://img.shields.io/badge/doc-master-orange.svg)](https://saschagrunert.github.io/webapp.rs/doc/webapp/index.html)
7+
[![Docs release](https://docs.rs/webapp/badge.svg)](https://docs.rs/webapp)
8+
[![Docs release backend](https://docs.rs/webapp-backend/badge.svg)](https://docs.rs/webapp-backend)
9+
[![Docs release frontend](https://docs.rs/webapp-frontend/badge.svg)](https://docs.rs/webapp-frontend)
710
[![License MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/saschagrunert/webapp.rs/blob/master/LICENSE)
811
[![Crates.io](https://img.shields.io/crates/v/webapp.svg)](https://crates.io/crates/webapp)
12+
[![Crates.io](https://img.shields.io/crates/v/webapp-backend.svg)](https://crates.io/crates/webapp-backend)
13+
[![Crates.io](https://img.shields.io/crates/v/webapp-frontend.svg)](https://crates.io/crates/webapp-frontend)
914

1015
## A web application completely written in Rust
1116

backend/Cargo.toml

+4-5
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@ categories = ["web-programming"]
44
description = "A web application completely written in Rust"
55
documentation = "https://docs.rs/webapp"
66
homepage = "https://github.com/saschagrunert/webapp.rs"
7-
keywords = ["web", "app", "website", "webapp", "wasm", "webassembly"]
7+
keywords = ["web", "app", "webapp", "wasm", "webassembly"]
88
license = "MIT"
99
name = "webapp-backend"
10-
readme = "README.md"
1110
repository = "https://github.com/saschagrunert/webapp.rs"
12-
version = "0.1.0"
11+
version = "1.0.0"
1312
edition = "2018"
1413

1514
[badges]
@@ -43,9 +42,9 @@ log = "0.4.6"
4342
num_cpus = "1.10.1"
4443
openssl = "0.10.23"
4544
r2d2 = "0.8.5"
46-
serde = { version = "1.0.94", features = [ "derive" ]}
45+
serde = { version = "1.0.94", features = ["derive"]}
4746
serde_cbor = "0.10.0"
4847
time = "0.1.42"
4948
url = "1.7.2"
5049
uuid = { version = "0.7.4", features = ["v4"] }
51-
webapp = { path = "..", features = ["backend"] }
50+
webapp = { version = "1.0.0", path = "..", features = ["backend"] }

frontend/Cargo.toml

+5-6
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@ categories = ["web-programming"]
44
description = "A web application completely written in Rust"
55
documentation = "https://docs.rs/webapp"
66
homepage = "https://github.com/saschagrunert/webapp.rs"
7-
keywords = ["web", "app", "website", "webapp", "wasm", "webassembly"]
7+
keywords = ["web", "app", "webapp", "wasm", "webassembly"]
88
license = "MIT"
99
name = "webapp-frontend"
10-
readme = "README.md"
1110
repository = "https://github.com/saschagrunert/webapp.rs"
12-
version = "0.1.0"
11+
version = "1.0.0"
1312
edition = "2018"
1413

1514
[badges]
@@ -25,13 +24,13 @@ path = "src/main.rs"
2524
failure = "0.1.5"
2625
sass-rs = "0.2.2"
2726
url = "1.7.2"
28-
webapp = { path = ".." }
27+
webapp = { version = "1.0.0", path = ".." }
2928

3029
[dependencies]
3130
failure = "0.1.5"
3231
log = "0.4.6"
33-
serde = { version = "1.0.94", features = [ "derive" ]}
32+
serde = { version = "1.0.94", features = ["derive"]}
3433
stdweb = "0.4.17"
35-
webapp = { path = ".." }
34+
webapp = { version = "1.0.0", path = ".." }
3635
yew = { version = "0.6.0", features = ["cbor"] }
3736
yew-router = "0.2.0"

0 commit comments

Comments
 (0)