Skip to content

Commit

Permalink
prepare release 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tessi committed Nov 8, 2024
1 parent b073f68 commit d707f8a
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/compatibility-elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
strategy:
fail-fast: false
matrix:
otp: [25.2, 26.2, 27.0]
elixir: [1.15.6, 1.16.1, 1.17.0]
otp: [25.2, 26.2, 27.1]
elixir: [1.15.8, 1.16.3, 1.17.3]
exclude:
- otp: 27.0
elixir: 1.15.6
- otp: 27.0
elixir: 1.16.1
- otp: 27.1
elixir: 1.15.8
- otp: 27.1
elixir: 1.16.3
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/elixir-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
- main

env:
ELIXIR_VERSION: 1.17.0
OTP_VERSION: 27.0
ELIXIR_VERSION: 1.17.3
OTP_VERSION: 27.1
MIX_ENV: test
WASMEX_BUILD: true

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Types of changes
- `Fixed` for any bug fixes.
- `Security` in case of vulnerabilities.

## [unreleased]
## [0.9.2 - 2024-11-08]

### Added

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.9.1"}
{:wasmex, "~> 0.9.2"}
]
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.9.1"
@version "0.9.2"

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

0 comments on commit d707f8a

Please sign in to comment.