Skip to content

Commit

Permalink
Bump to version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fitzgen committed May 17, 2019
1 parent 03e70be commit 5c125a2
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,29 @@ Released YYYY-MM-DD.

--------------------------------------------------------------------------------

## 0.7.0

Released 2019-05-17.

### Added

* Added the `walrus::ModuleCustomSections` API for working with arbitrary custom
sections, including and especially custom sections that `walrus` itself has no
special knowledge of. This is exposed as the `customs` field of a
`walrus::Module`.

* Added the `Module::with_config` constructor method to create a default, empty
module that uses the given configuration.

### Removed

* The `walrus::Module::custom` vector of raw custom modules has been removed and
is superceded by the new `walrus::ModuleCustomSections` API. If you were using
this and the old `CustomSection` type, switch to use the `RawCustomSection`
type with `ModuleCustomSections`.

--------------------------------------------------------------------------------

## 0.6.0

Released 2019-05-02.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2018"
name = "walrus"
version = "0.6.1"
version = "0.7.0"
license = "MIT/Apache-2.0"
readme = "README.md"
categories = ["wasm"]
Expand All @@ -28,7 +28,7 @@ id-arena = { version = "2.2.1", features = ['rayon'] }
leb128 = "0.2.3"
log = "0.4"
rayon = "1.0.3"
walrus-macro = { path = './crates/macro', version = '=0.6.0' }
walrus-macro = { path = './crates/macro', version = '=0.7.0' }
wasmparser = "0.30"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2018"
name = "walrus-macro"
version = "0.6.0"
version = "0.7.0"
license = "MIT/Apache-2.0"
categories = ["wasm"]
repository = "https://github.com/rustwasm/walrus/tree/crates/macro"
Expand Down

0 comments on commit 5c125a2

Please sign in to comment.