Skip to content

Commit

Permalink
release: v0.1.0 (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
bhelx committed Nov 30, 2022
1 parent c6b8429 commit 37b8e5b
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion browser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@extism/runtime-browser",
"version": "0.0.2",
"version": "0.1.0",
"description": "Extism runtime in the browser",
"scripts": {
"build": "node build.js && tsc --emitDeclarationOnly --outDir dist",
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.0.1",
version: "0.1.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.0.1"
version = "0.1.0"
edition = "2021"
authors = ["Benjamin Eckel <bhelx@simst.im>"]

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

[dependencies]
rustler = "0.26.0"
extism = { version = "0.0.1" }
extism = { version = "0.1.0" }
log = "0.4"
2 changes: 1 addition & 1 deletion libextism.pc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ libdir=${exec_prefix}/lib

Name: extism
Description: The Extism universal plug-in system.
Version: 0.0.1
Version: 0.1.0
Cflags: -I${includedir}
Libs: -L${libdir} -lextism
2 changes: 1 addition & 1 deletion libextism/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libextism"
version = "0.0.1"
version = "0.1.0"
edition = "2021"
authors = ["The Extism Authors", "oss@extism.org"]
license = "BSD-3-Clause"
Expand Down
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.0.1"
version = "0.1.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.0.1",
"version": "0.1.0",
"description": "Extism Host SDK for Node",
"keywords": [
"extism",
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.0.1"
version = "0.1.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.0.1"
VERSION = "0.1.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.0.1"
version = "0.1.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.0.1-rc.6", path = "../manifest" }
extism-manifest = { version = "0.1.0", path = "../manifest" }
pretty-hex = { version = "0.3" }

[features]
Expand Down
6 changes: 3 additions & 3 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "extism"
version = "0.0.1"
version = "0.1.0"
edition = "2021"
authors = ["The Extism Authors", "oss@extism.org"]
license = "BSD-3-Clause"
Expand All @@ -9,8 +9,8 @@ repository = "https://github.com/extism/extism"
description = "Extism Host SDK for Rust"

[dependencies]
extism-manifest = { version = "0.0.1", path = "../manifest" }
extism-runtime = { version = "0.0.1", path = "../runtime"}
extism-manifest = { version = "0.1.0", path = "../manifest" }
extism-runtime = { version = "0.1.0", path = "../runtime"}
serde_json = "1"
log = "0.4"
thiserror = "1"

0 comments on commit 37b8e5b

Please sign in to comment.