diff --git a/README.md b/README.md index 9e189547..8e6f8b9c 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ This an implementation of [Jsonnet](http://jsonnet.org/) in pure Go. It is a feature complete, production-ready implementation. It is compatible with the original [Jsonnet C++ implementation](https://github.com/google/jsonnet). Bindings to C and Python are available (but not battle-tested yet). -This code is known to work on Go 1.12 and above. We recommend always using the newest stable release of Go. +This code is known to work on Go 1.23 and above. We recommend always using the newest stable release of Go. ## Installation instructions @@ -83,7 +83,7 @@ func main() { } ``` -## Build instructions (go 1.12+) +## Build instructions (go 1.23+) ```bash git clone git@github.com:google/go-jsonnet.git @@ -119,6 +119,8 @@ Additionally if any files were moved around, see the section [Keeping the Bazel ## Building libjsonnet.wasm +The [WASM](https://webassembly.org/) build can be used to embed go-jsonnet for use (client side) in the web browser. This is used for the live code snippets on https://jsonnet.org/ + ```bash GOOS=js GOARCH=wasm go build -o libjsonnet.wasm ./cmd/wasm ```