Compare commits
2 Commits
main
...
release/v0
Author | SHA1 | Date |
---|---|---|
6543 | cc77d5e17b | |
6543 | 413b9d6985 |
|
@ -1,5 +1,12 @@
|
|||
# Changelog
|
||||
|
||||
## [v0.3.1](https://gitea.com/gitea/tea/pulls?q=&type=all&state=closed&milestone=1265) - 2020-06-15
|
||||
|
||||
* BUGFIXES
|
||||
* --ssh-key should be string not bool (#135) (#137)
|
||||
* modules/git: fix dropped error (#127)
|
||||
* Issues details: add missing newline (#126)
|
||||
|
||||
## [v0.3.0](https://gitea.com/gitea/tea/pulls?q=&type=all&state=closed&milestone=1227) - 2020-04-22
|
||||
|
||||
* FEATURES
|
||||
|
|
|
@ -55,7 +55,7 @@ var cmdLoginAdd = cli.Command{
|
|||
Usage: "Access token. Can be obtained from Settings > Applications",
|
||||
Required: true,
|
||||
},
|
||||
&cli.BoolFlag{
|
||||
&cli.StringFlag{
|
||||
Name: "ssh-key",
|
||||
Aliases: []string{"s"},
|
||||
Usage: "Path to a SSH key to use for pull/push operations",
|
||||
|
|
Loading…
Reference in New Issue