File tree Expand file tree Collapse file tree 4 files changed +25
-6
lines changed
Expand file tree Collapse file tree 4 files changed +25
-6
lines changed Original file line number Diff line number Diff line change 1+ v1.6.5
Original file line number Diff line number Diff line change 11module github.com/project-flogo/core
22
3+ go 1.18
4+
35require (
46 github.com/araddon/dateparse v0.0.0-20190622164848-0fb0a474d195
5- github.com/pkg/errors v0.9.1 // indirect
67 github.com/stretchr/testify v1.4.0
7- github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
8- github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
98 github.com/xeipuuv/gojsonschema v1.1.0
109 go.uber.org/zap v1.16.0
1110)
1211
13- go 1.12
12+ require (
13+ github.com/davecgh/go-spew v1.1.1 // indirect
14+ github.com/pkg/errors v0.9.1 // indirect
15+ github.com/pmezard/go-difflib v1.0.0 // indirect
16+ github.com/stretchr/objx v0.1.0 // indirect
17+ github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
18+ github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
19+ go.uber.org/atomic v1.6.0 // indirect
20+ go.uber.org/multierr v1.5.0 // indirect
21+ gopkg.in/yaml.v2 v2.2.2 // indirect
22+ )
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ
22github.com/BurntSushi/toml v0.3.1 /go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU =
33github.com/araddon/dateparse v0.0.0-20190622164848-0fb0a474d195 h1:c4mLfegoDw6OhSJXTd2jUEQgZUQuJWtocudb97Qn9EM =
44github.com/araddon/dateparse v0.0.0-20190622164848-0fb0a474d195 /go.mod h1:SLqhdZcd+dF3TEVL2RMoob5bBP5R1P1qkox+HtCBgGI =
5- github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8 =
65github.com/davecgh/go-spew v1.1.0 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
76github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c =
87github.com/davecgh/go-spew v1.1.1 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
@@ -56,7 +55,6 @@ golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtn
5655golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5 h1:hKsoRgsbwY1NafxrwTs+k64bikrLBkAgPir1TNCj3Zs =
5756golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5 /go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo =
5857golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7 /go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0 =
59- gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM =
6058gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
6159gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY =
6260gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
Original file line number Diff line number Diff line change 1+ package core
2+
3+ import _ "embed"
4+
5+ //go:embed VERSION
6+ var version string
7+
8+ // Version will return the core version
9+ func Version () string {
10+ return version
11+ }
You can’t perform that action at this time.
0 commit comments