summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-12-03no go.* in repos at go.wit.comHEADv1.2.4guimasterdevelJeff Carr
Signed-off-by: Jeff Carr <[email protected]>
2024-01-14bare minimumv1.2.3v1.2.1Jeff Carr
Signed-off-by: Jeff Carr <[email protected]>
2022-10-02Merge pull request #11 from alexflint/update-ci-golang-versionsv1.2.0Alex Flint
Update golang versions used in CI
2022-10-02update to latest version of the setup-go github actionAlex Flint
2022-10-02use empty string for "latest"Alex Flint
2022-10-02update golang versions used in CIAlex Flint
2022-10-02Merge pull request #10 from daenney/parseintAlex Flint
Support different integer formats
2022-10-02Support different integer formatsDaniele Sluijters
In Go you can format numbers in different ways, as doucment in https://go.dev/ref/spec#Integer_literals. ParseInt with a base of 0 will infer the correct base for the number based on a prefix 0x, 0b etc, and also supports the use of the _ to separate digits. This can be helpful with long numbers, to make things easier to read. This switches the ParseInt() calls to use a base of 0, ensuring that if ParseValue is called with an int like 100_000 it'll parse correctly instead of throw an error.
2021-08-20Merge pull request #9 from alexflint/improve-coverageAlex Flint
Increase test coverage to 100%
2021-08-20improve test coverageAlex Flint
2021-08-17Merge pull request #8 from alexflint/parse-urlsv1.1.0Alex Flint
Add support for url.URL
2021-08-17add support for url.URLAlex Flint
2021-04-19Merge pull request #7 from alexflint/drop-travisAlex Flint
Drop travisCI in favor of github workflows
2021-04-19drop travisAlex Flint
2021-04-19Merge pull request #5 from alexflint/continuous-integrationAlex Flint
Setup continuous integration with github workflows
2021-04-19add a github workflow to run testsAlex Flint
2021-04-19Merge pull request #4 from alexflint/drop-vendorAlex Flint
Drop vendor directory
2021-04-19update go.modAlex Flint
2021-04-19drop vendor dirAlex Flint
2018-11-20Merge pull request #3 from alexflint/gomodv1.0.0Alex Flint
Create go.mod
2018-11-19add vendorAlex Flint
2018-11-19add initial go.mod, go.sumAlex Flint
2018-11-19Merge pull request #2 from pborzenkov/text-unmarshaler-valueAlex Flint
Allow to use values (not pointers) with TextUnmarshaler
2018-11-18Drop special handling of net.IP typePavel Borzenkov
It's now completely covered by generic TextUnmarshaler case. Signed-off-by: Pavel Borzenkov <[email protected]>
2018-11-16Allow to use values (not pointers) with TextUnmarshalerPavel Borzenkov
The patch makes sure that both values and pointer to values are checked for custom TextUnmarshal implementation. This will allow to use go-arg custom parsing as follows: var args struct { Arg CustomType } instead of var args struct { Arg *CustomType } Signed-off-by: Pavel Borzenkov <[email protected]>
2017-02-15Merge pull request #1 from alexflint/travis_pingAlex Flint
fix test failures
2017-02-15whitespaceAlex Flint
2017-02-15fix testsAlex Flint
2017-02-15minor tweakAlex Flint
2017-02-15add misc support filesAlex Flint
2017-02-15add readmeAlex Flint
2017-02-15based functions all workingAlex Flint