Go 1.7 is released
blog.golang.org
Go 1.7 is released
1–10 of 141 posts
Re: Go 1.7 is released
#2Re: Go 1.7 is released
#3Re: Go 1.7 is released
#4Seems like a great release. Faster compilation and faster at runtime. Normally these 2 are considered opposite of each other.
Re: Go 1.7 is released
#5Seems like a great release. Faster compilation and faster at runtime. Normally these 2 are considered opposite of each other.
Re: Go 1.7 is released
#6Re: Go 1.7 is released
#7Standout points in my opinion:
Overall performance improvements:
>> "We observed a 5–35% speedup across our benchmarks."
Decreased compile times and binary size:
>> "While these changes across the compiler toolchain are mostly invisible, users have observed a significant speedup in compile time and a reduction in binary size by as much as 20–30%."
Vendoring dependencies by default:
>> "...and in Go 1.7... the "vendor" behavior is always enabled"
Context package added to std lib:
>> "To make use of contexts within the standard library and to encourage more extensive use, the package has been moved from the x/net repository to the standard library as the context package."
Re: Go 1.7 is released
#8Go get now update submodules... I'm honestly not sure what the current hack is for package management, but I assume people are still doing wrappers around go get to pin to commits/versions, (or else building your own repos for funsies), and I'm wondering if that breaks anything.
Re: Go 1.7 is released
#9Cool. What's the plan for Go 8? What exciting features are up ahead?