Skip to content

Commit 55b8fe0

Browse files
authored
Merge pull request ManageIQ#370 from cben/release-4.1.0
Release 4.1.0
2 parents 5c4b298 + 602391c commit 55b8fe0

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
55
Kubeclient release versioning follows [SemVer](https://semver.org/).
66

7-
## Unreleased
7+
## 4.1.0 — 2018-11-28
88

99
### Fixed
1010
- Support custom resources with lowercase `kind` (#361).

RELEASING.md

+7
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,19 @@ At some point in time it is decided to release version x.y.z.
88
RELEASE_BRANCH="master"
99
```
1010

11+
## 0. (once) Install gem-release, needed for several commands here:
12+
13+
```bash
14+
gem install gem-release
15+
```
16+
1117
## 1. PR(s) for changelog & bump
1218

1319
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.
1420

1521
Bump `lib/kubeclient/version.rb` manually, or by using:
1622
```bash
23+
git checkout -b release-$RELEASE_VERSION
1724
gem bump --version $RELEASE_VERSION
1825
git show # View version bump change.
1926
```

lib/kubeclient/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Kubernetes REST-API Client
22
module Kubeclient
3-
VERSION = '4.0.0'.freeze
3+
VERSION = '4.1.0'.freeze
44
end

0 commit comments

Comments
 (0)