summaryrefslogtreecommitdiff
path: root/go.sum
diff options
context:
space:
mode:
authorShulhan <m.shulhan@gmail.com>2020-04-03 22:03:38 +0700
committerShulhan <m.shulhan@gmail.com>2020-04-03 22:03:38 +0700
commitbfd340aa12f885202b600a3f33a5c52530a7a89b (patch)
tree154c65749bb0f087fea9de56a30de1d1de2bbcd9 /go.sum
parent4851dde16286bd014f7f5abf91475f26293ee2c8 (diff)
downloadpakakeh.go-0.14.0.tar.xz
Release share v0.14.0v0.14.0
== share v0.14.0 (2020-04-03) === Breaking changes * http: simplify server Endpoint registrations Previously, each endpoint with method DELETE, GET, PATCH, POST, and PUT require calling different call for registration. This change simplify it to one call only, "RegisterEndpoint", and the registration process will be handled automatically based on value on field Method. * mining/math: move the package from "lib/mining/" to "lib/" directory === New features * debug: add a wrapper for starting and stopping CPU profile * math/big: new package that extends the capabilities of "math/big" The "big" package add custom global precision, rounding mode, and number of digit precision after decimal point for all instance of Float that use the package. * reflect: new package that extends the standard reflect This package add new interface "Equaler", it is an interface that have single method "IsEqual()". Also, we have new function "IsNil(interface{})" that will return true if the value in interface{} is nil. * strings: add function SingleSpace The SingleSpace function convert all sequences of white spaces into single space ' '. === Enhancements * http: embed the standard http package instead of separate field * hunspell: return the stem instead of root word on Spell() method * hunspell: add Stem() method to Spell and Stem The Stem() method reduce inflected (or sometimes derived) words to their word stem, base, or root form. * hunspell: add Analyze() method to Spell and Stem The Analyze() method will return list of morphological fields of the word. * strings: check for other white spaces on MergeSpaces === Bug fixes * http: fix the content-length header not set if file is not cached
Diffstat (limited to 'go.sum')
-rw-r--r--go.sum14
1 files changed, 7 insertions, 7 deletions
diff --git a/go.sum b/go.sum
index bc8e4736..ea10d5d9 100644
--- a/go.sum
+++ b/go.sum
@@ -1,12 +1,12 @@
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
-golang.org/x/crypto v0.0.0-20200320181102-891825fb96df h1:lDWgvUvNnaTnNBc/dwOty86cFeKoKWbwy2wQj0gIxbU=
-golang.org/x/crypto v0.0.0-20200320181102-891825fb96df/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
-golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3 h1:0GoQqolDA55aaLxZyTzK/Y2ePZzZTUrRacwib7cNsYQ=
+golang.org/x/crypto v0.0.0-20200323165209-0ec3e9974c59 h1:3zb4D3T4G8jdExgVU/95+vQXfpEPiMdCaZgmGVxjNHM=
+golang.org/x/crypto v0.0.0-20200323165209-0ec3e9974c59/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
-golang.org/x/net v0.0.0-20200320220750-118fecf932d8 h1:1+zQlQqEEhUeStBTi653GZAnAuivZq/2hz+Iz+OP7rg=
-golang.org/x/net v0.0.0-20200320220750-118fecf932d8/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
+golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e h1:3G+cUijn7XD+S4eJFddp53Pv7+slrESplyjG25HgL+k=
+golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200321134203-328b4cd54aae h1:3tcmuaB7wwSZtelmiv479UjUB+vviwABz7a133ZwOKQ=
-golang.org/x/sys v0.0.0-20200321134203-328b4cd54aae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200331124033-c3d80250170d h1:nc5K6ox/4lTFbMVSL9WRR81ixkcwXThoiF6yf+R9scA=
+golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=