Skip to content

Commit

Permalink
Merge pull request ManageIQ#370 from cben/release-4.1.0
Browse files Browse the repository at this point in the history
Release 4.1.0
  • Loading branch information
cben authored Nov 28, 2018
2 parents 5c4b298 + 602391c commit 55b8fe0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
Kubeclient release versioning follows [SemVer](https://semver.org/).

## Unreleased
## 4.1.0 — 2018-11-28

### Fixed
- Support custom resources with lowercase `kind` (#361).
Expand Down
7 changes: 7 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,19 @@ At some point in time it is decided to release version x.y.z.
RELEASE_BRANCH="master"
```

## 0. (once) Install gem-release, needed for several commands here:

```bash
gem install gem-release
```

## 1. PR(s) for changelog & bump

Edit `CHANGELOG.md` as necessary. Even if all included changes remembered to update it, you should replace "Unreleased" section header with appropriate "x.y.z — 20yy-mm-dd" header.

Bump `lib/kubeclient/version.rb` manually, or by using:
```bash
git checkout -b release-$RELEASE_VERSION
gem bump --version $RELEASE_VERSION
git show # View version bump change.
```
Expand Down
2 changes: 1 addition & 1 deletion lib/kubeclient/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Kubernetes REST-API Client
module Kubeclient
VERSION = '4.0.0'.freeze
VERSION = '4.1.0'.freeze
end

0 comments on commit 55b8fe0

Please sign in to comment.