Skip to content

Commit

Permalink
bump version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tessi committed Jun 24, 2021
1 parent 5855d5a commit 4335010
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ Types of changes
- Wasmex.Memory.bytes_per_element changed its signature from
`Wasmex.Memory.bytes_per_element(memory, :uint32, 0)` to `Wasmex.Memory.bytes_per_element(:uint32)`.
The existing signature `Wasmex.Memory.bytes_per_element(memory)` still works as before.
- changed the default development branch from `master` to `main`
- targeting and testing on elixir 1.12 and OTP 24.0 now - older versions are likely still working, but will not be tested anymore.

#### Removed

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies in `mix.exs`:
```elixir
def deps do
[
{:wasmex, "~> 0.3.1"}
{:wasmex, "~> 0.4.0"}
]
end
```
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ defmodule Wasmex.MixProject do
def project do
[
app: :wasmex,
version: "0.3.1",
elixir: "~> 1.11",
version: "0.4.0",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
name: "Wasmex",
description: description(),
Expand Down
2 changes: 1 addition & 1 deletion native/wasmex/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion native/wasmex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmex"
version = "0.3.1"
version = "0.4.0"
authors = ["Philipp Tessenow <[email protected]>"]
description = "Elixir extension to run WebAssembly binaries"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion test/wasm_import_test/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/wasm_import_test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmex_test"
version = "0.3.1"
version = "0.4.0"
authors = ["Philipp Tessenow <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion test/wasm_test/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/wasm_test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmex_test"
version = "0.3.1"
version = "0.4.0"
authors = ["Philipp Tessenow <[email protected]>"]
edition = "2018"

Expand Down

0 comments on commit 4335010

Please sign in to comment.