Accepting request 683684 from home:jfkw:branches:devel:languages:go

- go1.12 (released 2019/02/25) includes changes in the implementation of the
  toolchain, runtime, and libraries. As always, the release maintains the Go 1
  promise of compatibility. Upstream expects almost all Go programs to continue
  to compile and run as before.
  * GO111MODULE=on enables module-aware operations outside of a module directory
  * GODEBUG=tls13=1 enables opt-in support for TLS 1.3 in the crypto/tls package
    per RFC 8446. Will be default in go1.13.
  * trace tool now supports plotting mutator utilization curves, including
    cross-references to the execution trace. These are useful for analyzing the
    impact of the garbage collector on application latency and throughput.
  * arm64 assembler platform register renamed from R18 to R18_PLATFORM
  * improvements to gc
  * race detector is now supported on linux/arm64
  * cgo is now supported on linux/ppc64
  * go1.12 is the last release that will support binary-only packages.

OBS-URL: https://build.opensuse.org/request/show/683684
OBS-URL: https://build.opensuse.org/package/show/devel:languages:go/go?expand=0&rev=323
This commit is contained in:
Jeff Kowalczyk 2019-03-11 06:32:37 +00:00 committed by Git OBS Bridge
parent a537180629
commit 27c9a9ffb1
2 changed files with 21 additions and 2 deletions

View File

@ -1,3 +1,22 @@
-------------------------------------------------------------------
Mon Mar 11 05:26:57 UTC 2019 - Jeff Kowalczyk <jkowalczyk@suse.com>
- go1.12 (released 2019/02/25) includes changes in the implementation of the
toolchain, runtime, and libraries. As always, the release maintains the Go 1
promise of compatibility. Upstream expects almost all Go programs to continue
to compile and run as before.
* GO111MODULE=on enables module-aware operations outside of a module directory
* GODEBUG=tls13=1 enables opt-in support for TLS 1.3 in the crypto/tls package
per RFC 8446. Will be default in go1.13.
* trace tool now supports plotting mutator utilization curves, including
cross-references to the execution trace. These are useful for analyzing the
impact of the garbage collector on application latency and throughput.
* arm64 assembler platform register renamed from R18 to R18_PLATFORM
* improvements to gc
* race detector is now supported on linux/arm64
* cgo is now supported on linux/ppc64
* go1.12 is the last release that will support binary-only packages.
-------------------------------------------------------------------
Thu Jan 24 04:34:37 UTC 2019 - Jeff Kowalczyk <jkowalczyk@suse.com>

View File

@ -19,10 +19,10 @@
# By default we don't include tsan. It's only supported on amd64.
%define tsan_arch x86_64
%define short_version 1.11
%define short_version 1.12
Name: go
Version: 1.11.5
Version: 1.12
Release: 0
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Summary: A compiled, garbage-collected, concurrent programming language