File tree Expand file tree Collapse file tree 4 files changed +14
-0
lines changed
Expand file tree Collapse file tree 4 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 1+ [bumpversion]
2+ current_version = 0.1.5
3+ commit = True
4+ tag = True
5+
6+ [bumpversion:file:cmd/mongoimport/mongoimport.go]
7+ search = const Version \= " {current_version}"
8+ replace = {new_version}
Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ import (
1212// Rev is set on build time to the git HEAD
1313var Rev = ""
1414
15+ // Version is incremented using bump2version
16+ const Version = "0.1.5"
17+
1518var (
1619 mongoConnectionOptions = []cli.Flag {
1720 & cli.StringFlag {
Original file line number Diff line number Diff line change 55require (
66 github.com/JensRantil/go-csv v0.0.0-20191126162552-aff1990e884a
77 github.com/docker/go-connections v0.4.0
8+ github.com/fzipp/gocyclo v0.0.0-20150627053110-6acd4345c835 // indirect
89 github.com/gosuri/uilive v0.0.4 // indirect
910 github.com/gosuri/uiprogress v0.0.1
1011 github.com/kennygrant/sanitize v1.2.4
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ github.com/docker/go-units v0.3.3 h1:Xk8S3Xj5sLGlG5g67hJmYMmUgXv5N4PhkjJHHqrwnTk
3636github.com/docker/go-units v0.3.3 /go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk =
3737github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I =
3838github.com/fsnotify/fsnotify v1.4.7 /go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo =
39+ github.com/fzipp/gocyclo v0.0.0-20150627053110-6acd4345c835 h1:roDmqJ4Qes7hrDOsWsMCce0vQHz3xiMPjJ9m4c2eeNs =
40+ github.com/fzipp/gocyclo v0.0.0-20150627053110-6acd4345c835 /go.mod h1:BjL/N0+C+j9uNX+1xcNuM9vdSIcXCZrQZUYbXOFbgN8 =
3941github.com/gin-contrib/sse v0.1.0 /go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI =
4042github.com/gin-gonic/gin v1.5.0 /go.mod h1:Nd6IXA8m5kNZdNEHMBd93KT+mdY3+bewLgRvmCsR2Do =
4143github.com/go-kit/kit v0.8.0 /go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as =
You can’t perform that action at this time.
0 commit comments