* Update command added * Ensure that the upgraded version is really greater * Update command should not update prerelease * Minor presentation changes * Fix command generation in containers from docker-compose file - Refactored service creation * Place the full command to the "cmd" package * Update cobra to v1.4.0 * Updated build and release creation * Created an install script * Add more doc * Add some tests... * Add a test directive in Makefile
13 lines
314 B
Modula-2
13 lines
314 B
Modula-2
module katenary
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
|
|
github.com/kr/pretty v0.2.0 // indirect
|
|
github.com/spf13/cobra v1.4.0
|
|
golang.org/x/mod v0.5.1
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
|
|
)
|