diff options
author | 6543 <6543@obermui.de> | 2020-09-06 02:44:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-05 20:44:34 -0400 |
commit | f10d3ea803548ebefee3158c708a7b3b0129176a (patch) | |
tree | 37ec0d12c01a17e2d6f88cbed7a9d8b7736a98c8 /go.mod | |
parent | 67ec27150ecf7f55c8eff41cd4b327d5ce866235 (diff) | |
download | gitea-f10d3ea803548ebefee3158c708a7b3b0129176a.tar.gz gitea-f10d3ea803548ebefee3158c708a7b3b0129176a.zip |
[Vendor] Fix Version Compare Lib (#12735)
* switch to patched fork
* vendor
* reference upstream lib and use replace in go.mod
* reference upstream lib and use replace in go.mod
* Apply suggestions from code review
* vendor
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -51,7 +51,7 @@ require ( github.com/google/uuid v1.1.1 github.com/gorilla/context v1.1.1 github.com/hashicorp/go-retryablehttp v0.6.6 // indirect - github.com/hashicorp/go-version v1.2.1 + github.com/hashicorp/go-version v0.0.0-00010101000000-000000000000 github.com/huandu/xstrings v1.3.0 github.com/issue9/assert v1.3.2 // indirect github.com/issue9/identicon v1.0.1 @@ -117,3 +117,5 @@ require ( xorm.io/builder v0.3.7 xorm.io/xorm v1.0.4 ) + +replace github.com/hashicorp/go-version => github.com/6543/go-version v1.2.3 |