diff options
-rw-r--r-- | content/go1.15.article | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/content/go1.15.article b/content/go1.15.article new file mode 100644 index 0000000..1f71528 --- /dev/null +++ b/content/go1.15.article @@ -0,0 +1,26 @@ +# Go 1.15 is released +11 Aug 2020 +Summary: Go 1.15 adds a new linker, X.509 changes, runtime improvements, compiler improvements, GOPROXY improvements, and more. + +Alex Rakoczy + +## + +Today the Go team is very happy to announce the release of Go 1.15. You can get it from the [download page](https://golang.org/dl). + +Some of the highlights include: + + - [Substantial improvements to the Go linker](https://golang.org/doc/go1.15#linker) + - [Improved allocation for small objects at high core counts](https://golang.org/doc/go1.15#runtime) + - [X.509 CommonName deprecation](https://golang.org/doc/go1.15#commonname) + - [GOPROXY supports skipping proxies that return errors](https://golang.org/doc/go1.15#go-command) + - [New embedded tzdata package](https://golang.org/doc/go1.15#time/tzdata) + - [A number of Core Library improvements](https://golang.org/doc/go1.15#library) + +For the complete list of changes and more information about the improvements above, see the [**Go 1.15 release notes**](https://golang.org/doc/go1.15). + +We want to thank everyone who contributed to this release by writing code, filing bugs, providing feedback, and/or testing the beta and release candidates. +Your contributions and diligence helped to ensure that Go 1.15 is as stable as possible. +That said, if you notice any problems, please [file an issue](https://golang.org/issue/new). + +We hope you enjoy the new release! |