diff options
| author | Shulhan <m.shulhan@gmail.com> | 2020-04-03 22:03:38 +0700 |
|---|---|---|
| committer | Shulhan <m.shulhan@gmail.com> | 2020-04-03 22:03:38 +0700 |
| commit | bfd340aa12f885202b600a3f33a5c52530a7a89b (patch) | |
| tree | 154c65749bb0f087fea9de56a30de1d1de2bbcd9 /go.mod | |
| parent | 4851dde16286bd014f7f5abf91475f26293ee2c8 (diff) | |
| download | pakakeh.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.mod')
| -rw-r--r-- | go.mod | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3,7 +3,7 @@ module github.com/shuLhan/share go 1.13 require ( - golang.org/x/crypto v0.0.0-20200320181102-891825fb96df - golang.org/x/net v0.0.0-20200320220750-118fecf932d8 - golang.org/x/sys v0.0.0-20200321134203-328b4cd54aae + golang.org/x/crypto v0.0.0-20200323165209-0ec3e9974c59 + golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e + golang.org/x/sys v0.0.0-20200331124033-c3d80250170d ) |
