Skip to content

Commit 6f2367c

Browse files
committed
Update references to latest patch version of Go 1.18 in preparation for next beta release
1 parent 559256d commit 6f2367c

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/measure-size.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
fetch-depth: 0
1212
- uses: actions/setup-go@v2
1313
with:
14-
go-version: '~1.18.5'
14+
go-version: '~1.18.10'
1515
- uses: gopherjs/output-size-action/measure@main
1616
with:
1717
name: jQuery TodoMVC

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ version, you can use an [older GopherJS release](https://github.com/gopherjs/gop
3737
Install GopherJS with `go install`:
3838

3939
```
40-
go install github.com/gopherjs/[email protected]beta2 # Or replace 'v1.18.0-beta2' with another version.
40+
go install github.com/gopherjs/[email protected]beta3 # Or replace 'v1.18.0-beta3' with another version.
4141
```
4242

4343
If your local Go distribution as reported by `go version` is newer than Go 1.18, then you need to set the `GOPHERJS_GOROOT` environment variable to a directory that contains a Go 1.18 distribution. For example:
4444

4545
```
46-
go install golang.org/dl/go1.18.6@latest
47-
go1.18.6 download
48-
export GOPHERJS_GOROOT="$(go1.18.6 env GOROOT)" # Also add this line to your .profile or equivalent.
46+
go install golang.org/dl/go1.18.10@latest
47+
go1.18.10 download
48+
export GOPHERJS_GOROOT="$(go1.18.10 env GOROOT)" # Also add this line to your .profile or equivalent.
4949
```
5050

5151
Now you can use `gopherjs build [package]`, `gopherjs build [files]` or `gopherjs install [package]` which behave similar to the `go` tool. For `main` packages, these commands create a `.js` file and `.js.map` source map in the current directory or in `$GOPATH/bin`. The generated JavaScript file can be used as usual in a website. Use `gopherjs help [command]` to get a list of possible command line flags, e.g. for minification and automatically watching for changes.

circle.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ workflows:
5454
parameters:
5555
go_version:
5656
type: string
57-
default: "1.18.5"
57+
default: "1.18.10"
5858
nvm_version:
5959
type: string
6060
default: "0.38.0"

compiler/version_check.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
)
1414

1515
// Version is the GopherJS compiler version string.
16-
const Version = "1.18.0-beta2+go1.18.5"
16+
const Version = "1.18.0-beta3+go1.18.10"
1717

1818
// GoVersion is the current Go 1.x version that GopherJS is compatible with.
1919
const GoVersion = 18

0 commit comments

Comments
 (0)