Skip to content

Commit

Permalink
chore(release): 0.4.0 (#51)
Browse files Browse the repository at this point in the history
Co-authored-by: release-please-nobbs[bot] <131695263+release-please-nobbs[bot]@users.noreply.github.com>
  • Loading branch information
release-please-nobbs[bot] authored Jan 27, 2024
1 parent 03df59a commit e6b1e79
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"0.3.0"}
{".":"0.4.0"}
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# Changelog

## [0.4.0](https://github.com/nobbs/kubectl-mapr-ticket/compare/v0.3.0...v0.4.0) (2024-01-27)


### Features

* add `inspect` command ([#52](https://github.com/nobbs/kubectl-mapr-ticket/issues/52)) ([f4bd4bc](https://github.com/nobbs/kubectl-mapr-ticket/commit/f4bd4bcbc1d03f5464afac3f578a0262bba0f234))


### Bug Fixes

* ci not properly updating version ([c066e8a](https://github.com/nobbs/kubectl-mapr-ticket/commit/c066e8a950890bc285080c8cbd590421c590df0b))
* complete multiple values for sort-by flags ([8f4bf49](https://github.com/nobbs/kubectl-mapr-ticket/commit/8f4bf496b24515bc8f7d02c47a6dd457a8b06683))
* **deps:** update module github.com/nobbs/mapr-ticket-parser to v0.1.3 ([f4bd4bc](https://github.com/nobbs/kubectl-mapr-ticket/commit/f4bd4bcbc1d03f5464afac3f578a0262bba0f234))


### Continuous Integration

* use gotestsum for tests ([f4bd4bc](https://github.com/nobbs/kubectl-mapr-ticket/commit/f4bd4bcbc1d03f5464afac3f578a0262bba0f234))


### Documentation

* add godoc comments to cmd packages ([f4bd4bc](https://github.com/nobbs/kubectl-mapr-ticket/commit/f4bd4bcbc1d03f5464afac3f578a0262bba0f234))
* add inspect subcommand to README ([f4bd4bc](https://github.com/nobbs/kubectl-mapr-ticket/commit/f4bd4bcbc1d03f5464afac3f578a0262bba0f234))
* add some more go doc strings ([f4bd4bc](https://github.com/nobbs/kubectl-mapr-ticket/commit/f4bd4bcbc1d03f5464afac3f578a0262bba0f234))


### Miscellaneous Chores

* add license header to all files ([f4bd4bc](https://github.com/nobbs/kubectl-mapr-ticket/commit/f4bd4bcbc1d03f5464afac3f578a0262bba0f234))
* **deps:** upgrade all dependencies ([b376b29](https://github.com/nobbs/kubectl-mapr-ticket/commit/b376b291e45fd0247ff3addce5c27fbcdbf118c6))
* switch to direnv for managing local dev env ([f4bd4bc](https://github.com/nobbs/kubectl-mapr-ticket/commit/f4bd4bcbc1d03f5464afac3f578a0262bba0f234))
* switch to prerelease version of mapr-ticket-parser ([f4bd4bc](https://github.com/nobbs/kubectl-mapr-ticket/commit/f4bd4bcbc1d03f5464afac3f578a0262bba0f234))
* typo in SPDX license header ([9120486](https://github.com/nobbs/kubectl-mapr-ticket/commit/912048669a42b2196a59a87bc9f380d87074ac78))
* update pre-commit config ([03df59a](https://github.com/nobbs/kubectl-mapr-ticket/commit/03df59aaf0bcccfe6af2338ba9bef621e2c1ebb8))

## [0.3.0](https://github.com/nobbs/kubectl-mapr-ticket/compare/v0.2.1...v0.3.0) (2024-01-25)


Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ You can download the latest release binaries from the [releases page](https://gi

<!-- x-release-please-start-version -->

Example installation of `v0.3.0` for Apple Silicon (ARM64) macOS:
Example installation of `v0.4.0` for Apple Silicon (ARM64) macOS:

```console
$ curl -LO https://github.com/nobbs/kubectl-mapr-ticket/releases/download/v0.3.0/kubectl-mapr-ticket-arm64-darwin.tar.gz
$ curl -LO https://github.com/nobbs/kubectl-mapr-ticket/releases/download/v0.4.0/kubectl-mapr-ticket-arm64-darwin.tar.gz
$ tar -xvf kubectl-mapr-ticket-arm64-darwin.tar.gz
$ mv ./kubectl-mapr-ticket /usr/local/bin
$ kubectl mapr-ticket --help
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

const (
// the version of the compiled binary
version = "0.2.1" // x-release-please-version
version = "0.4.0" // x-release-please-version
)

// Version is a struct to hold the version information
Expand Down

0 comments on commit e6b1e79

Please sign in to comment.