Skip to content

Commit

Permalink
bump to v0.5.1 (#405)
Browse files Browse the repository at this point in the history
Signed-off-by: danbugs <[email protected]>
  • Loading branch information
danbugs authored Jun 2, 2023
1 parent 6934d48 commit 2fc0beb
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ http-server = ["dep:slight-http-server"]
http-client = ["dep:slight-http-client"]

[workspace.package]
version = "0.5.0"
version = "0.5.1"
authors = ["DeisLabs Engineering Team"]
edition = "2021"
license = "MIT"
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercon
### JS

```sh
slight new -n [email protected].0 js && cd spidey
# ^^^ starts a new js project under SpiderLightning's v0.5.0 spec
slight new -n [email protected].1 js && cd spidey
# ^^^ starts a new js project under SpiderLightning's v0.5.1 spec

slight buildjs -e slightjs_engine.wasm -o main.wasm src/main.js
# ^^^ builds the js application
Expand All @@ -54,8 +54,8 @@ slight -c slightfile.toml run main.wasm -l
### C

```sh
slight new -n [email protected].0 c && cd spidey
# ^^^ starts a new c project under SpiderLightning's v0.5.0 spec
slight new -n [email protected].1 c && cd spidey
# ^^^ starts a new c project under SpiderLightning's v0.5.1 spec

# you might want to install wasi-sdk dependencies...
# on unix, run:
Expand All @@ -76,8 +76,8 @@ slight -c slightfile.toml run spidey.wasm
### Rust

```sh
slight new -n [email protected].0 rust && cd spidey
# ^^^ starts a new rust project under SpiderLightning's v0.5.0 spec
slight new -n [email protected].1 rust && cd spidey
# ^^^ starts a new rust project under SpiderLightning's v0.5.1 spec

cargo build --target wasm32-wasi

Expand Down
2 changes: 1 addition & 1 deletion templates/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ wit-bindgen-rust = { git = "https://github.com/fermyon/wit-bindgen-backport" }
# ^^^ A language binding generator for WebAssembly interface types
wit-error-rs = { git = "https://github.com/danbugs/wit-error-rs", rev = "05362f1a4a3a9dc6a1de39195e06d2d5d6491a5e" }
# ^^^ Convenience error-related trait implementations for types generated from a wit-bindgen import
slight-http-handler-macro = { git = "https://github.com/deislabs/spiderlightning", tag = "v0.5.0" }
slight-http-handler-macro = { git = "https://github.com/deislabs/spiderlightning", tag = "v0.5.1" }
# ^^^ Macro for creating http request handlers when using SpiderLightning's http interface

[workspace]

0 comments on commit 2fc0beb

Please sign in to comment.