Skip to content

Commit 74b2aec

Browse files
committed
Update version to 1.19-beta2.
1 parent 1568908 commit 74b2aec

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ GopherJS compiles Go code ([go.dev](https://go.dev/)) to pure JavaScript code. I
1515

1616
### What's new?
1717

18+
- 2025-08-19: Go 1.19 beta2 is [released](https://github.com/gopherjs/gopherjs/releases/tag/v1.19.0-beta2), with full generics support!
1819
- 2024-02-24: Go 1.19 support is [available](https://github.com/gopherjs/gopherjs/releases/tag/v1.19.0-beta1)!
1920
- 2022-08-18: Go 1.18 support is [available](https://github.com/gopherjs/gopherjs/releases/tag/v1.18.0-beta2%2Bgo1.18.5)!
2021
- 2021-09-19: Go 1.17 support is available!
@@ -38,7 +39,7 @@ version, you can use an [older GopherJS release](https://github.com/gopherjs/gop
3839
Install GopherJS with `go install`:
3940

4041
```
41-
go install github.com/gopherjs/gopherjs@v1.19.0-beta1 # Or replace 'v1.19.0-beta1' with another version.
42+
go install github.com/gopherjs/gopherjs@v1.19.0-beta2 # Or replace 'v1.19.0-beta2' with another version.
4243
```
4344

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

compiler/version_check.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
)
1313

1414
// Version is the GopherJS compiler version string.
15-
const Version = "1.19.0-beta1+go1.19.13"
15+
const Version = "1.19.0-beta2+go1.19.13"
1616

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

0 commit comments

Comments
 (0)