| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-12-05 | Fix `Println` vet warnings to run testsfix-cli-package-compatibility | Teddy Wing | |
| Was getting the following warnings, causing tests to fail: $ go test ./... # github.com/ksubedi/gomove ./ast.go:67:3: Println arg list ends with redundant newline ./ast.go:73:3: Println arg list ends with redundant newline ./native.go:112:3: Println arg list ends with redundant newline ./native.go:121:3: Println arg list ends with redundant newline FAIL github.com/ksubedi/gomove [build failed] FAIL Since Go 1.10, `go test` runs `vet` checks: https://github.com/golang/go/issues/18085 Update the print calls to eliminate the `vet` warnings. | |||
| 2019-12-05 | Fix cli package compatibility using Go Modules | Teddy Wing | |
| Recently, the following errors have come up when building: $ go build # github.com/ksubedi/gomove ./main.go:18:5: app.Author undefined (type *cli.App has no field or method Author) ./main.go:21:17: cannot use cli.StringFlag literal (type cli.StringFlag) as type cli.Flag in array or slice literal: cli.StringFlag does not implement cli.Flag (Apply method has pointer receiver) ./main.go:26:17: cannot use cli.StringFlag literal (type cli.StringFlag) as type cli.Flag in array or slice literal: cli.StringFlag does not implement cli.Flag (Apply method has pointer receiver) ./main.go:30:17: cannot use cli.StringFlag literal (type cli.StringFlag) as type cli.Flag in array or slice literal: cli.StringFlag does not implement cli.Flag (Apply method has pointer receiver) ./main.go:37:13: cannot use func literal (type func(*cli.Context)) as type cli.ActionFunc in assignment The `github.com/codegangsta/cli` package has been moved to `github.com/urfave/cli`. The latest major version of `github.com/urfave/cli` is now v2, which is incompatible with the version `gomove` expects. Add Go Modules manifest files with: $ go mod init to set a dependency on `github.com/urfave/cli` v1, fixing the build errors. Fixes #6. | |||
| 2019-11-20 | Merge pull request #5 from gcarter-comcast/keep-commentsHEADmaster | Kaushal Subedi | |
| Keep comments in safe mode. | |||
| 2019-11-01 | Keep comments in safe mode. | Greg Carter | |
| 2018-12-13 | Merge pull request #2 from femaref/master | Kaushal Subedi | |
| Ignore files under vendor/ dir | |||
| 2018-01-20 | second try | Femaref | |
| 2018-01-20 | document the fact we ignore vendor/ | Femaref | |
| 2018-01-20 | ignore the vendor path. It can't contain references to the package anyway ↵ | Femaref | |
| and speeds up performance. | |||
| 2015-10-27 | added comments | Kaushal Subedi | |
| 2015-10-26 | version bump0.2.17 | Kaushal Subedi | |
| 2015-10-26 | updated readme with safe mode | Kaushal Subedi | |
| 2015-10-26 | minor fixes | Kaushal Subedi | |
| 2015-10-26 | added better text outputs | Kaushal Subedi | |
| 2015-10-26 | fixed typo | Kaushal Subedi | |
| 2015-10-26 | updated colors on native processing | Kaushal Subedi | |
| 2015-10-26 | trimming spaces on console output messages | Kaushal Subedi | |
| 2015-10-26 | added checks to make sure non changed files do not get written | Kaushal Subedi | |
| 2015-10-26 | added default value for safe mode to false | Kaushal Subedi | |
| 2015-10-26 | added safe mode warning | Kaushal Subedi | |
| 2015-10-26 | added colors to native processing output | Kaushal Subedi | |
| 2015-10-26 | added new flag for safe mode | Kaushal Subedi | |
| 2015-10-26 | more refactoring | Kaushal Subedi | |
| 2015-10-26 | minor refactoring and added comments | Kaushal Subedi | |
| 2015-10-26 | split ast processing and native processing to different files | Kaushal Subedi | |
| 2015-10-26 | added missing comments | Kaushal Subedi | |
| 2015-10-26 | only write files if changes were made | Kaushal Subedi | |
| 2015-10-26 | changed the way imports are replaced on AST | Kaushal Subedi | |
| 2015-10-26 | added processing of go files without using ast | Kaushal Subedi | |
| 2015-10-26 | added warning on readme about the comment stripping issue | Kaushal Subedi | |
| 2015-10-25 | added link to releases page on readme | Kaushal Subedi | |
| 2015-10-25 | added colors to console output0.0.1-pre-release | Kaushal Subedi | |
| 2015-10-25 | initial commit | Kaushal Subedi | |
