Changelog v0.5.0 (#205)
Add Changelog for v0.5.0 Update SubComand Descriptions Co-authored-by: 6543 <6543@obermui.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/205 Reviewed-by: Norwin <noerw@noreply.gitea.io> Reviewed-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
parent
cf2c18c32b
commit
9602c149ca
23
CHANGELOG.md
23
CHANGELOG.md
|
@ -1,5 +1,28 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [v0.5.0](https://gitea.com/gitea/tea/releases/tag/v0.5.0) - 2020-09-27
|
||||||
|
|
||||||
|
* BREAKING
|
||||||
|
* Add Login Manage Functions (#182)
|
||||||
|
* FEATURES
|
||||||
|
* Add Release Subcomands (#195)
|
||||||
|
* Render Markdown and colorize labels table (#181)
|
||||||
|
* Add BasicAuth & Interactive for Login (#174)
|
||||||
|
* Add milestones subcomands (#149)
|
||||||
|
* BUGFIXES
|
||||||
|
* Fix Pulls Create (#202)
|
||||||
|
* Pulls create: detect head branch repo owner (#193)
|
||||||
|
* Fix Labels Delete (#180)
|
||||||
|
* ENHANCEMENTS
|
||||||
|
* Add Pagination Options for List Subcomands (#204)
|
||||||
|
* Issues/Pulls: Details show State (#196)
|
||||||
|
* Make issues & pulls subcommands consistent (#188)
|
||||||
|
* Update SDK to v0.13.0 (#179)
|
||||||
|
* More Options To Specify Repo (#178)
|
||||||
|
* Add Repo Create subcomand & enhancements (#173)
|
||||||
|
* Times: format duration as seconds for machine-readable outputs (#168)
|
||||||
|
* Add user message to login list view (#166)
|
||||||
|
|
||||||
## [v0.4.1](https://gitea.com/gitea/tea/releases/tag/v0.4.1) - 2020-09-13
|
## [v0.4.1](https://gitea.com/gitea/tea/releases/tag/v0.4.1) - 2020-09-13
|
||||||
|
|
||||||
* BUGFIXES
|
* BUGFIXES
|
||||||
|
|
|
@ -46,12 +46,14 @@ Detailed usage information is available via `tea <command> --help`.
|
||||||
login Log in to a Gitea server
|
login Log in to a Gitea server
|
||||||
logout Log out from a Gitea server
|
logout Log out from a Gitea server
|
||||||
issues List, create and update issues
|
issues List, create and update issues
|
||||||
pulls List, checkout and clean pull requests
|
pulls List, create, checkout and clean pull requests
|
||||||
releases Create releases
|
releases List, create, update and delete releases
|
||||||
repos Operate with repositories
|
repos Operate with repositories
|
||||||
labels Manage issue labels
|
labels Manage issue labels
|
||||||
times Operate on tracked times of a repositorys issues and pulls
|
times Operate on tracked times of a repositorys issues and pulls
|
||||||
open Open something of the repository on web browser
|
open Open something of the repository on web browser
|
||||||
|
notifications Show notifications
|
||||||
|
milestones List and create milestones
|
||||||
```
|
```
|
||||||
|
|
||||||
To fetch issues from different repos, use the `--remote` flag (when inside a gitea repository directory) or `--login` & `--repo` flags.
|
To fetch issues from different repos, use the `--remote` flag (when inside a gitea repository directory) or `--login` & `--repo` flags.
|
||||||
|
|
|
@ -17,8 +17,8 @@ import (
|
||||||
// CmdIssues represents to login a gitea server.
|
// CmdIssues represents to login a gitea server.
|
||||||
var CmdIssues = cli.Command{
|
var CmdIssues = cli.Command{
|
||||||
Name: "issues",
|
Name: "issues",
|
||||||
Usage: "List and create issues",
|
Usage: "List, create and update issues",
|
||||||
Description: `List and create issues`,
|
Description: "List, create and update issues",
|
||||||
ArgsUsage: "[<issue index>]",
|
ArgsUsage: "[<issue index>]",
|
||||||
Action: runIssues,
|
Action: runIssues,
|
||||||
Subcommands: []*cli.Command{
|
Subcommands: []*cli.Command{
|
||||||
|
|
|
@ -15,8 +15,8 @@ import (
|
||||||
// CmdNotifications is the main command to operate with notifications
|
// CmdNotifications is the main command to operate with notifications
|
||||||
var CmdNotifications = cli.Command{
|
var CmdNotifications = cli.Command{
|
||||||
Name: "notifications",
|
Name: "notifications",
|
||||||
Usage: "show notifications",
|
Usage: "Show notifications",
|
||||||
Description: "show notifications, by default based of the current repo and unread one",
|
Description: "Show notifications, by default based of the current repo and unread one",
|
||||||
Action: runNotifications,
|
Action: runNotifications,
|
||||||
Flags: append([]cli.Flag{
|
Flags: append([]cli.Flag{
|
||||||
&cli.BoolFlag{
|
&cli.BoolFlag{
|
||||||
|
|
|
@ -23,8 +23,8 @@ import (
|
||||||
var CmdPulls = cli.Command{
|
var CmdPulls = cli.Command{
|
||||||
Name: "pulls",
|
Name: "pulls",
|
||||||
Aliases: []string{"pull", "pr"},
|
Aliases: []string{"pull", "pr"},
|
||||||
Usage: "List open pull requests",
|
Usage: "List, create, checkout and clean pull requests",
|
||||||
Description: `List open pull requests`,
|
Description: `List, create, checkout and clean pull requests`,
|
||||||
ArgsUsage: "[<pull index>]",
|
ArgsUsage: "[<pull index>]",
|
||||||
Action: runPulls,
|
Action: runPulls,
|
||||||
Flags: IssuePRFlags,
|
Flags: IssuePRFlags,
|
||||||
|
|
Loading…
Reference in New Issue