Skip to content

Commit

Permalink
prepare version 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tessi committed Jan 8, 2023
1 parent f8d3a07 commit 3395d4b
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ jobs:
LIB_FINAL_PATH="${NIF_DIRECTORY}/${LIB_FINAL_NAME}.tar.gz"
# Let subsequent steps know where to find the lib
echo "LIB_FINAL_PATH=${{ LIB_FINAL_PATH }}" >> $GITHUB_OUTPUT
echo "LIB_FINAL_NAME=${{ LIB_FINAL_NAME }}.tar.gz" >> $GITHUB_OUTPUT
echo "LIB_FINAL_PATH=${LIB_FINAL_PATH}" >> $GITHUB_OUTPUT
echo "LIB_FINAL_NAME=${LIB_FINAL_NAME}.tar.gz" >> $GITHUB_OUTPUT
- name: "Artifact upload"
uses: actions/upload-artifact@v2
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ Types of changes
- `Fixed` for any bug fixes.
- `Security` in case of vulnerabilities.

## [0.8.1] - unreleased
## unreleased

put your changes here

## [0.8.1] - 2023-01-08

This release makes running user-provided WASM binaries a whole bunch safter by providing restrictions on memory and CPU usage.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dependencies in `mix.exs`:
```elixir
def deps do
[
{:wasmex, "~> 0.8.0"}
{:wasmex, "~> 0.8.1"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Wasmex.MixProject do
use Mix.Project

@version "0.8.1-dev"
@version "0.8.1"

def project do
[
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.8.1-dev"
version = "0.8.1"
authors = ["Philipp Tessenow <[email protected]>"]
description = "Elixir extension to run WebAssembly binaries through wasmtime"
readme = "README.md"
Expand Down

0 comments on commit 3395d4b

Please sign in to comment.