Skip to content

Commit 8345da6

Browse files
authored
Merge branch 'master' into fix/remove_crate_type
2 parents 78c8394 + 8c318a1 commit 8345da6

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

33
[unreleased]
4+
5+
## v0.5.0
46
- Added helper `seed::canvas()`, and `seed::canvas_context()` helper functions.
57
- Fixed `Url` parsing (resolves issue with hash routing).
68
- [BREAKING] `From<String> for Url` changed to `TryFrom<String> for Url`.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "seed"
3-
version = "0.4.2"
3+
version = "0.5.0"
44
description = "A Rust framework for creating web apps, using WebAssembly"
55
authors = ["DavidOConnor <[email protected]>"]
66
license = "MIT"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</p>
99

1010

11-
## [New homepage](https://seed-rs.org), as of November 2019
11+
## [New homepage](https://seed-rs.org), as of Nov 2019 - We are looking forward to your [feedback](https://github.com/seed-rs/seed/issues/303)!
1212

1313
The best place to learn is the guide on the homepage - this readme is an excerpt from it.
1414

@@ -68,7 +68,7 @@ edition = "2018"
6868
crate-type = ["cdylib"]
6969

7070
[dependencies]
71-
seed = "^0.4.2"
71+
seed = "^0.5.0"
7272
wasm-bindgen = "^0.2.50"
7373
```
7474

@@ -175,7 +175,7 @@ fn view(model: &Model) -> impl View<Msg> {
175175

176176
#[wasm_bindgen(start)]
177177
pub fn render() {
178-
seed::App::build(|_, _| Init::new(Model::default()), update, view)
178+
App::builder(update, view)
179179
.build_and_start();
180180
}
181181
```

RELEASE_CHECKLIST.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ This is a list of steps to complete when making a new release.
55
1. Review the commit and PR history since last release. Ensure that all relevant
66
changes are included in `CHANGELOG.md`, and that breaking changes
77
are specifically annotated
8+
1. Update the version of seed dependency in the readme.
89
1. Ensure both the readme and homepage website reflect API changes. Instructions
910
for updating the homepage are available [here](https://github.com/seed-rs/seed-homepage)
1011
1. Update the homepage with the new release version (main page), and changelog

0 commit comments

Comments
 (0)