1.9.0
✨ the last version may have come out recently, but there have been lots of changes, so time for another release! Lots of new functions:
- 6 new functions for resolving hostnames and various DNS records:
net.LookupIP
,net.LookupIPs
,net.LookupCNAME
,net.LookupSRV
,net.LookupSRVs
,net.LookupTXT
- 2 new functions for handling regular expressions:
regexp.Replace
,regexp.Match
- Namespacing string-related functions:
strings.Contains
,strings.HasPrefix
,strings.HasSuffix
,strings.ReplaceAll
,strings.Split
,strings.SplitN
,strings.Title
,strings.ToLower
,strings.ToUpper
,strings.Trim
,strings.TrimSpace
- Note: these namespaced functions support pipelining, whereas the previous versions don't
- Namespaced the
indent
function intostrings.Indent
, and added additional functionality
v1.9.0 (2017-06-14)
Implemented enhancements:
- DNS resolver function... #157
- Regular expression support #152
- Enhancing indent function #166 (hairyhenderson)
- Creating a strings namespace #164 (hairyhenderson)
- Adding regexp support #161 (hairyhenderson)
- Adding net.Lookup* functions #158 (hairyhenderson)