From 8d76cf0440052a8e648df8ab4f79f72afe0eb3ef Mon Sep 17 00:00:00 2001 From: Benjamin Eckel Date: Wed, 15 Mar 2023 09:42:05 -0500 Subject: [PATCH] release: 0.3.0 (#281) Co-authored-by: zach --- dotnet/nuget/Extism.runtime.win.csproj | 2 +- elixir/mix.exs | 2 +- elixir/native/extism_nif/Cargo.toml | 4 ++-- haskell/extism.cabal | 4 ++-- haskell/manifest/extism-manifest.cabal | 2 +- java/pom.xml | 2 +- libextism/Cargo.toml | 4 ++-- manifest/Cargo.toml | 2 +- node/package.json | 2 +- ocaml/Makefile | 2 +- python/pyproject.toml | 2 +- ruby/lib/extism/version.rb | 2 +- runtime/Cargo.toml | 4 ++-- rust/Cargo.toml | 8 ++++---- 14 files changed, 21 insertions(+), 21 deletions(-) diff --git a/dotnet/nuget/Extism.runtime.win.csproj b/dotnet/nuget/Extism.runtime.win.csproj index 54377ce..a631a6f 100644 --- a/dotnet/nuget/Extism.runtime.win.csproj +++ b/dotnet/nuget/Extism.runtime.win.csproj @@ -8,7 +8,7 @@ Extism.runtime.win-x64 - 0.3.0 + 0.4.0 Extism Contributors Internal implementation package for Extism to work on Windows x64 extism, wasm, plugin diff --git a/elixir/mix.exs b/elixir/mix.exs index 4d95d0a..16eddee 100644 --- a/elixir/mix.exs +++ b/elixir/mix.exs @@ -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(), diff --git a/elixir/native/extism_nif/Cargo.toml b/elixir/native/extism_nif/Cargo.toml index 2b9972a..61bc879 100644 --- a/elixir/native/extism_nif/Cargo.toml +++ b/elixir/native/extism_nif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "extism_nif" -version = "0.1.0" +version = "0.2.0" edition = "2021" authors = ["Benjamin Eckel "] @@ -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" diff --git a/haskell/extism.cabal b/haskell/extism.cabal index 7c0e52b..e2c6412 100644 --- a/haskell/extism.cabal +++ b/haskell/extism.cabal @@ -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 @@ -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 diff --git a/haskell/manifest/extism-manifest.cabal b/haskell/manifest/extism-manifest.cabal index 38aa962..529d758 100644 --- a/haskell/manifest/extism-manifest.cabal +++ b/haskell/manifest/extism-manifest.cabal @@ -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 diff --git a/java/pom.xml b/java/pom.xml index f76fd51..90366ea 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -4,7 +4,7 @@ org.extism.sdk extism jar - 0.2.0 + 0.3.0 extism https://github.com/extism/extism Java-SDK for Extism to use webassembly from Java diff --git a/libextism/Cargo.toml b/libextism/Cargo.toml index de3e4f5..5d31f9d 100644 --- a/libextism/Cargo.toml +++ b/libextism/Cargo.toml @@ -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" @@ -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 \ No newline at end of file +http = ["extism-runtime/http"] # enables extism_http_request diff --git a/manifest/Cargo.toml b/manifest/Cargo.toml index a98b6c7..1a8cc1b 100644 --- a/manifest/Cargo.toml +++ b/manifest/Cargo.toml @@ -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" diff --git a/node/package.json b/node/package.json index 22a27a2..554077d 100644 --- a/node/package.json +++ b/node/package.json @@ -1,6 +1,6 @@ { "name": "@extism/extism", - "version": "0.2.0", + "version": "0.3.0", "description": "Extism Host SDK for Node", "keywords": [ "extism", diff --git a/ocaml/Makefile b/ocaml/Makefile index 326d926..dc14897 100644 --- a/ocaml/Makefile +++ b/ocaml/Makefile @@ -1,4 +1,4 @@ -VERSION?=0.1.0 +VERSION?=0.2.0 build: dune build diff --git a/python/pyproject.toml b/python/pyproject.toml index 18d1a21..ee94645 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -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 "] license = "BSD-3-Clause" diff --git a/ruby/lib/extism/version.rb b/ruby/lib/extism/version.rb index b6b085c..aa1d683 100644 --- a/ruby/lib/extism/version.rb +++ b/ruby/lib/extism/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Extism - VERSION = "0.2.0" + VERSION = "0.3.0" end diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 14cf05a..45cf3f9 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -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" @@ -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" diff --git a/rust/Cargo.toml b/rust/Cargo.toml index c0f07a3..29a6a57 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -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" @@ -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"] } \ No newline at end of file +uuid = { version = "1", features = ["v4"] }