Skip to content

Commit 628669a

Browse files
ranilesiku2Xavientois
authored
Prepare v0.3.0 release (#148)
* bump versions * add blog * fix an old mistake * add "Looking for contributors" note * Update website/blog/2021-07-27-new-release.md Co-authored-by: Simon <[email protected]> * Apply suggestions from review * Update READMEs * update gloo version on homepage * Apply suggestions from code review Co-authored-by: Xavientois <[email protected]> * Update README.md Co-authored-by: Simon <[email protected]> Co-authored-by: Xavientois <[email protected]>
1 parent d903f7d commit 628669a

File tree

12 files changed

+103
-15
lines changed

12 files changed

+103
-15
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,9 @@
22
**/*.rs.bk
33
Cargo.lock
44

5-
guide/book
5+
# editor configs
66
.vscode
7+
.idea
8+
9+
# hosting cache
10+
.firebase/hosting.*.cache

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2018"
55
license = "MIT/Apache-2.0"
66
name = "gloo"
77
readme = "README.md"
8-
version = "0.2.1"
8+
version = "0.3.0"
99
repository = "https://github.com/rustwasm/gloo"
1010
homepage = "https://github.com/rustwasm/gloo"
1111
categories = ["api-bindings", "wasm"]

crates/console/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ repository = "https://github.com/rustwasm/gloo/tree/master/crates/console"
1010
homepage = "https://github.com/rustwasm/gloo"
1111
categories = ["api-bindings", "development-tools::profiling", "wasm"]
1212

13-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
14-
1513
[dependencies]
1614
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
1715
js-sys = "0.3"

crates/dialogs/README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<h1><code>gloo-dialogs</code></h1>
44

55
<p>
6-
<a href="https://dev.azure.com/rustwasm/gloo/_build?definitionId=6"><img src="https://img.shields.io/azure-devops/build/rustwasm/gloo/6.svg?style=flat-square" alt="Build Status" /></a>
76
<a href="https://crates.io/crates/gloo-dialogs"><img src="https://img.shields.io/crates/v/gloo-dialogs.svg?style=flat-square" alt="Crates.io version" /></a>
87
<a href="https://crates.io/crates/gloo-dialogs"><img src="https://img.shields.io/crates/d/gloo-dialogs.svg?style=flat-square" alt="Download" /></a>
98
<a href="https://docs.rs/gloo-dialogs"><img src="https://img.shields.io/badge/docs-latest-blue.svg?style=flat-square" alt="docs.rs docs" /></a>
@@ -20,8 +19,12 @@
2019
<sub>Built with 🦀🕸 by <a href="https://rustwasm.github.io/">The Rust and WebAssembly Working Group</a></sub>
2120
</div>
2221

23-
This crate provides wrapper for `alert`, `prompt` and `confirm` functions.
22+
This crate provides wrappers for the following functions.
23+
- [`alert`](https://developer.mozilla.org/en-US/docs/Web/API/Window/alert)
24+
- [`confirm`](https://developer.mozilla.org/en-US/docs/Web/API/Window/confirm)
25+
- [`prompt`](https://developer.mozilla.org/en-US/docs/Web/API/Window/prompt)
26+
2427
`web-sys` provides a raw API which is hard to use. This crate provides an easy-to-use,
2528
idiomatic Rust API for these functions.
2629

27-
See the documentation for [`alert`], [`prompt`] and [`confirm`] for more information.
30+
See the [API documentation](https://docs.rs/gloo-dialogs) to learn more.

crates/events/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<h1><code>gloo-events</code></h1>
44

55
<p>
6-
<a href="https://dev.azure.com/rustwasm/gloo/_build?definitionId=6"><img src="https://img.shields.io/azure-devops/build/rustwasm/gloo/6.svg?style=flat-square" alt="Build Status" /></a>
76
<a href="https://crates.io/crates/gloo-events"><img src="https://img.shields.io/crates/v/gloo-events.svg?style=flat-square" alt="Crates.io version" /></a>
87
<a href="https://crates.io/crates/gloo-events"><img src="https://img.shields.io/crates/d/gloo-events.svg?style=flat-square" alt="Download" /></a>
98
<a href="https://docs.rs/gloo-events"><img src="https://img.shields.io/badge/docs-latest-blue.svg?style=flat-square" alt="docs.rs docs" /></a>

crates/file/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<h1><code>gloo-file</code></h1>
44

55
<p>
6-
<a href="https://dev.azure.com/rustwasm/gloo/_build?definitionId=6"><img src="https://img.shields.io/azure-devops/build/rustwasm/gloo/6.svg?style=flat-square" alt="Build Status" /></a>
76
<a href="https://crates.io/crates/gloo-file"><img src="https://img.shields.io/crates/v/gloo-file.svg?style=flat-square" alt="Crates.io version" /></a>
87
<a href="https://crates.io/crates/gloo-file"><img src="https://img.shields.io/crates/d/gloo-file.svg?style=flat-square" alt="Download" /></a>
98
<a href="https://docs.rs/gloo-file"><img src="https://img.shields.io/badge/docs-latest-blue.svg?style=flat-square" alt="docs.rs docs" /></a>

crates/render/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<h1><code>gloo-render</code></h1>
44

55
<p>
6-
<a href="https://dev.azure.com/rustwasm/gloo/_build?definitionId=6"><img src="https://img.shields.io/azure-devops/build/rustwasm/gloo/6.svg?style=flat-square" alt="Build Status" /></a>
76
<a href="https://crates.io/crates/gloo-render"><img src="https://img.shields.io/crates/v/gloo-render.svg?style=flat-square" alt="Crates.io version" /></a>
87
<a href="https://crates.io/crates/gloo-render"><img src="https://img.shields.io/crates/d/gloo-render.svg?style=flat-square" alt="Download" /></a>
98
<a href="https://docs.rs/gloo-render"><img src="https://img.shields.io/badge/docs-latest-blue.svg?style=flat-square" alt="docs.rs docs" /></a>

crates/storage/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<h1><code>gloo-storage</code></h1>
44

55
<p>
6-
<a href="https://dev.azure.com/rustwasm/gloo/_build?definitionId=6"><img src="https://img.shields.io/azure-devops/build/rustwasm/gloo/6.svg?style=flat-square" alt="Build Status" /></a>
76
<a href="https://crates.io/crates/gloo-storage"><img src="https://img.shields.io/crates/v/gloo-storage.svg?style=flat-square" alt="Crates.io version" /></a>
87
<a href="https://crates.io/crates/gloo-storage"><img src="https://img.shields.io/crates/d/gloo-storage.svg?style=flat-square" alt="Download" /></a>
98
<a href="https://docs.rs/gloo-storage"><img src="https://img.shields.io/badge/docs-latest-blue.svg?style=flat-square" alt="docs.rs docs" /></a>

crates/timers/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<h1><code>gloo-timers</code></h1>
44

55
<p>
6-
<a href="https://dev.azure.com/rustwasm/gloo/_build?definitionId=6"><img src="https://img.shields.io/azure-devops/build/rustwasm/gloo/6.svg?style=flat-square" alt="Build Status" /></a>
76
<a href="https://crates.io/crates/gloo-timers"><img src="https://img.shields.io/crates/v/gloo-timers.svg?style=flat-square" alt="Crates.io version" /></a>
87
<a href="https://crates.io/crates/gloo-timers"><img src="https://img.shields.io/crates/d/gloo-timers.svg?style=flat-square" alt="Download" /></a>
98
<a href="https://docs.rs/gloo-timers"><img src="https://img.shields.io/badge/docs-latest-blue.svg?style=flat-square" alt="docs.rs docs" /></a>

website/blog/2019-05-29-hello-world.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
slug: hello-world
33
title: Hello World
44
author: Muhammad Hamza
5-
author_title: Maintainer of Docusaurus
5+
author_title: Maintainer of Gloo
66
author_url: https://github.com/hamza1311
77
author_image_url: https://avatars.githubusercontent.com/u/47357913?v=4
88
tags: [hello]

0 commit comments

Comments
 (0)