Skip to content

Releases: cheton/github-release-cli

v2.1.0

06 Nov 13:20
Compare
Choose a tag to compare

What's Changed

  • feat: replace babel-runtime with @babel/runtime by @hex0cter in #26
  • fix: fixes issue where markdown cant be passed into the body by @matthewdolman in #19

New Contributors

Full Changelog: v2.0.0...v2.1.0

v2.0.0

20 Sep 04:36
236dd50
Compare
Choose a tag to compare

Breaking Changes

  • Only long option names are supported
Usage: github-release <command> [<args>]

Options:
  -V, --version          output the version number
  --baseurl <baseurl>    API endpoint (default: "https://api.github.com")
  --token <token>        OAuth2 token (default: null)
  --owner <owner>        The repository owner. (default: "")
  --repo <repo>          The repository name. (default: "")
  --tag <tag>            The name of the tag.
  --commitish <value>    Specifies the commitish value for tag. Unused if the tag already exists.
  --release-id <id>      The release id.
  --release-name <name>  The name of the release. (default: "")
  --body <body>          Text describing the contents of the tag.
  --draft [value]        `true` makes the release a draft, and `false` publishes the release.
  --prerelease [value]   `true` to identify the release as a prerelease, `false` to identify the release as a full release.
  -h, --help             display help for command
  • Renamed --name to --release-name

v1.3.1

15 Jun 08:39
Compare
Choose a tag to compare

Enhance the display of release listing (30792ad)

v1.3.0

14 Jun 11:31
Compare
Choose a tag to compare

Adds support for deleting a release using the tag name or the release id (2daa901, closes #13)

v1.2.0

08 Jun 14:13
eff3932
Compare
Choose a tag to compare

Adds support for specifying the commitish value to be used for a tag (PR #12, closes #11)

v1.1.0

04 Apr 15:01
Compare
Choose a tag to compare
  • Adds a baseurl option that allows you to specify an API endpoint (closes #6)
  • Fixes an issue that body will be overwritten if body is not specified when updating a release (closes #8)

v1.0.1

01 Feb 02:54
Compare
Choose a tag to compare
  • Migrate to new auth API (PR #5)

v1.0.0

17 Jan 17:04
Compare
Choose a tag to compare

Switch to @octokit/rest and bump version to 1.0.0 (PR #4)

v0.4.1

21 May 03:02
Compare
Choose a tag to compare

Support for disabling draft and prerelease (3d7a540, #2)

Create a prerelease

github-release upload \
  --owner cheton \
  --repo github-release-cli \
  --tag "v0.1.0" \
  --name "v0.1.0" \
  --body "This is a prerelease" \
  --prerelease

Change a prerelease to a published release

github-release upload \
  --owner cheton \
  --repo github-release-cli \
  --tag "v0.1.0" \
  --name "v0.1.0" \
  --body "This is a published release" \
  --prerelease=false

v0.4.0

19 May 14:24
Compare
Choose a tag to compare

Adds support for draft and prerelease (PR #1 by @kspearrin)