araddon / dateparse

GoLang Parse many date strings without knowing format in advance.
MIT License
2.04k stars 163 forks source link

Fix termtables dependency #112

Closed zikaeroh closed 3 years ago

zikaeroh commented 3 years ago

Updating to the latest version of this repo doesn't work without the module proxy, as it depends on the apcera/termtables package, which doesn't exist. A previous PR appears to have switched to another repo for this package, but the version it depended on appears to rely on doesn't exist (no tag on that repo?), and also depends back on the missing package, probably due to the version being in the middle of a rename.

Update the dependency to the latest version (fetched with go get -d github.com/scylladb/termtables@master) and go mod tidy to ensure this module does not refer to a package that cannot be fetched.

codecov-commenter commented 3 years ago

Codecov Report

Merging #112 into master will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff            @@
##            master      #112   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            1         1           
  Lines          935       935           
=========================================
  Hits           935       935           

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update fcfe3a0...56dec34. Read the comment docs.

araddon commented 3 years ago

Perfect, thank you, i saw this yesterday and spent some time trying to fix it but didn't get it done so thank you so much!