diff --git a/.subo.yml b/.subo.yml index a0cc4914..1340eb86 100644 --- a/.subo.yml +++ b/.subo.yml @@ -5,7 +5,6 @@ dotVersionFiles: preMakeTargets: - test - - crate/check postMakeTargets: - crate/publish diff --git a/Makefile b/Makefile index 47918622..9898022a 100644 --- a/Makefile +++ b/Makefile @@ -15,10 +15,6 @@ testdata/docker: testdata/docker/dev: subo build ./rwasm/testdata/ --builder-tag dev --mountpath $(PWD) -crate/check: - cargo publish --manifest-path ./api/rust/codegen/Cargo.toml --target=wasm32-wasi --dry-run - cargo publish --manifest-path ./api/rust/core/Cargo.toml --target=wasm32-wasi --dry-run - crate/publish: cargo publish --manifest-path ./api/rust/codegen/Cargo.toml --target=wasm32-wasi cargo publish --manifest-path ./api/rust/core/Cargo.toml --target=wasm32-wasi diff --git a/api/assemblyscript/package.json b/api/assemblyscript/package.json index f9534ac8..78e2191b 100644 --- a/api/assemblyscript/package.json +++ b/api/assemblyscript/package.json @@ -1,6 +1,6 @@ { "name": "@suborbital/suborbital", - "version": "0.13.0", + "version": "0.13.1", "types": "assembly/index.ts", "description": "Suborbital's Runnable API for AssemblyScript", "main": "assembly/index.ts", diff --git a/api/rust/codegen/Cargo.toml b/api/rust/codegen/Cargo.toml index 4eb29eee..b7d5459b 100644 --- a/api/rust/codegen/Cargo.toml +++ b/api/rust/codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "suborbital-macro" -version = "0.13.0" +version = "0.13.1" edition = "2018" authors = ["cohix ", "Florian Fromm "] description = "Macro for setting up a Runnable" diff --git a/api/rust/core/Cargo.toml b/api/rust/core/Cargo.toml index 0b1a6fa9..d1f8f322 100644 --- a/api/rust/core/Cargo.toml +++ b/api/rust/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "suborbital" -version = "0.13.0" +version = "0.13.1" authors = ["cohix ", "Florian Fromm "] edition = "2018" description = "Suborbital Wasm Runnable API" @@ -12,4 +12,4 @@ homepage = "https://suborbital.dev" crate-type = ["cdylib", "rlib"] [dependencies] -suborbital-macro = { path = "../codegen", version = "0.13.0" } +suborbital-macro = { path = "../codegen", version = "0.13.1" } diff --git a/changelogs/v0.13.1.md b/changelogs/v0.13.1.md new file mode 100644 index 00000000..295db74e --- /dev/null +++ b/changelogs/v0.13.1.md @@ -0,0 +1 @@ +Beta-13.1 includes an imrovement to the HTTP capability that improves the security of internal filters \ No newline at end of file