Skip to content

Commit

Permalink
release: 0.3.0 (#281)
Browse files Browse the repository at this point in the history
Co-authored-by: zach <zach@dylib.so>
  • Loading branch information
bhelx and zshipko committed Mar 15, 2023
1 parent d950e91 commit 8d76cf0
Show file tree
Hide file tree
Showing 14 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion dotnet/nuget/Extism.runtime.win.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<PropertyGroup>
<PackageId>Extism.runtime.win-x64</PackageId>
<Version>0.3.0</Version>
<Version>0.4.0</Version>
<Authors>Extism Contributors</Authors>
<Description>Internal implementation package for Extism to work on Windows x64</Description>
<Tags>extism, wasm, plugin</Tags>
Expand Down
2 changes: 1 addition & 1 deletion elixir/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Extism.MixProject do
def project do
[
app: :extism,
version: "0.2.1",
version: "0.3.0",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down
4 changes: 2 additions & 2 deletions elixir/native/extism_nif/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "extism_nif"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
authors = ["Benjamin Eckel <bhelx@simst.im>"]

Expand All @@ -11,5 +11,5 @@ crate-type = ["cdylib"]

[dependencies]
rustler = "0.27.0"
extism = { version = "0.2.1", path = "../../../rust", package = "extism" }
extism = { version = "0.3.0", path = "../../../rust", package = "extism" }
log = "0.4"
4 changes: 2 additions & 2 deletions haskell/extism.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: extism
version: 0.1.0
version: 0.2.0
license: BSD-3-Clause
maintainer: oss@extism.org
author: Extism authors
Expand All @@ -22,7 +22,7 @@ library
base >= 4.16.1 && < 4.19.0,
bytestring >= 0.11.3 && < 0.12,
json >= 0.10 && < 0.11,
extism-manifest >= 0.0.0 && < 0.2.0
extism-manifest >= 0.0.0 && < 0.3.0

test-suite extism-example
type: exitcode-stdio-1.0
Expand Down
2 changes: 1 addition & 1 deletion haskell/manifest/extism-manifest.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: extism-manifest
version: 0.1.0
version: 0.2.0
license: BSD-3-Clause
maintainer: oss@extism.org
author: Extism authors
Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>org.extism.sdk</groupId>
<artifactId>extism</artifactId>
<packaging>jar</packaging>
<version>0.2.0</version>
<version>0.3.0</version>
<name>extism</name>
<url>https://github.com/extism/extism</url>
<description>Java-SDK for Extism to use webassembly from Java</description>
Expand Down
4 changes: 2 additions & 2 deletions libextism/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libextism"
version = "0.2.1"
version = "0.3.0"
edition = "2021"
authors = ["The Extism Authors", "oss@extism.org"]
license = "BSD-3-Clause"
Expand All @@ -20,4 +20,4 @@ default = ["http", "register-http", "register-filesystem"]
nn = ["extism-runtime/nn"]
register-http = ["extism-runtime/register-http"] # enables wasm to be downloaded using http
register-filesystem = ["extism-runtime/register-filesystem"] # enables wasm to be loaded from disk
http = ["extism-runtime/http"] # enables extism_http_request
http = ["extism-runtime/http"] # enables extism_http_request
2 changes: 1 addition & 1 deletion manifest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "extism-manifest"
version = "0.2.1"
version = "0.3.0"
edition = "2021"
authors = ["The Extism Authors", "oss@extism.org"]
license = "BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@extism/extism",
"version": "0.2.0",
"version": "0.3.0",
"description": "Extism Host SDK for Node",
"keywords": [
"extism",
Expand Down
2 changes: 1 addition & 1 deletion ocaml/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION?=0.1.0
VERSION?=0.2.0

build:
dune build
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "extism"
version = "0.2.0"
version = "0.3.0"
description = "Extism Host SDK for python"
authors = ["The Extism Authors <oss@extism.org>"]
license = "BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion ruby/lib/extism/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Extism
VERSION = "0.2.0"
VERSION = "0.3.0"
end
4 changes: 2 additions & 2 deletions runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "extism-runtime"
version = "0.2.1"
version = "0.3.0"
edition = "2021"
authors = ["The Extism Authors", "oss@extism.org"]
license = "BSD-3-Clause"
Expand All @@ -22,7 +22,7 @@ log4rs = "1.1"
url = "2"
glob = "0.3"
ureq = {version = "2.5", optional=true}
extism-manifest = { version = "0.2.0", path = "../manifest" }
extism-manifest = { version = "0.3.0", path = "../manifest" }
pretty-hex = { version = "0.3" }
uuid = { version = "1", features = ["v4"] }
libc = "0.2"
Expand Down
8 changes: 4 additions & 4 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "extism"
version = "0.2.1"
version = "0.3.0"
edition = "2021"
authors = ["The Extism Authors", "oss@extism.org"]
license = "BSD-3-Clause"
Expand All @@ -9,9 +9,9 @@ repository = "https://github.com/extism/extism"
description = "Extism Host SDK for Rust"

[dependencies]
extism-manifest = { version = "0.2.1", path = "../manifest" }
extism-runtime = { version = "0.2.1", path = "../runtime"}
extism-manifest = { version = "0.3.0", path = "../manifest" }
extism-runtime = { version = "0.3.0", path = "../runtime"}
serde_json = "1"
log = "0.4"
anyhow = "1"
uuid = { version = "1", features = ["v4"] }
uuid = { version = "1", features = ["v4"] }

0 comments on commit 8d76cf0

Please sign in to comment.