Skip to content

Commit e2394cf

Browse files
authored
Merge pull request #206 from hypnoglow/prepare-0.14.0-release
Prepare v0.14.0 release
2 parents 8949077 + c12cea2 commit e2394cf

File tree

4 files changed

+19
-7
lines changed

4 files changed

+19
-7
lines changed

.goreleaser.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,3 @@ archives:
1818
files:
1919
- LICENSE
2020
- plugin.yaml
21-
22-
release:
23-
draft: true

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,28 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [0.14.0] - 2022-08-24
99

1010
### Changed
1111

12+
- The plugin command line interface changed to use [cobra](https://github.com/spf13/cobra)
13+
instead of kingpin. This provides more compatibility and the same UX as in Helm.
14+
[Refs: [#202](https://github.com/hypnoglow/helm-s3/pull/202)]
15+
1216
- Go updated to 1.19.
17+
[Refs: [#199](https://github.com/hypnoglow/helm-s3/pull/199)]
1318

1419
- Supported (and tested against) Helm versions updated to 3.9.3.
20+
[Refs: [#201](https://github.com/hypnoglow/helm-s3/pull/201)]
21+
22+
- Completed the migration of the CI pipeline to Github Actions.
23+
[Refs: [#166](https://github.com/hypnoglow/helm-s3/pull/166) [#205](https://github.com/hypnoglow/helm-s3/pull/205)]
24+
25+
### Fixed
26+
27+
- Fixed a bug where the plugin failed to fetch charts with special characters
28+
in version (e.g. `v1.0.1+build.123`).
29+
[Refs: [#158](https://github.com/hypnoglow/helm-s3/issues/158) [#204](https://github.com/hypnoglow/helm-s3/pull/204)]
1530

1631
## [0.13.0] - 2022-08-07
1732

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<p align="left"><img src=".github/assets/icon_with_name.png" width="500" alt="helm-s3 Logo"></p>
22

33
[![main](https://github.com/hypnoglow/helm-s3/actions/workflows/main.yml/badge.svg)](https://github.com/hypnoglow/helm-s3/actions/workflows/main.yml)
4+
[![release](https://github.com/hypnoglow/helm-s3/actions/workflows/release.yml/badge.svg)](https://github.com/hypnoglow/helm-s3/actions/workflows/release.yml)
45
[![codecov](https://codecov.io/gh/hypnoglow/helm-s3/branch/master/graph/badge.svg?token=lJqiDsDfPu)](https://codecov.io/gh/hypnoglow/helm-s3)
5-
[![CircleCI](https://circleci.com/gh/hypnoglow/helm-s3/tree/master.svg?style=shield)](https://circleci.com/gh/hypnoglow/helm-s3/tree/master)
66
[![License MIT](https://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE)
77
[![GitHub release](https://img.shields.io/github/release/hypnoglow/helm-s3.svg)](https://github.com/hypnoglow/helm-s3/releases)
88
[![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/s3)](https://artifacthub.io/packages/search?repo=s3)
@@ -48,7 +48,7 @@ The installation itself is simple as:
4848

4949
You can install a specific release version:
5050

51-
$ helm plugin install https://github.com/hypnoglow/helm-s3.git --version 0.13.0
51+
$ helm plugin install https://github.com/hypnoglow/helm-s3.git --version 0.14.0
5252

5353
To use the plugin, you do not need any special dependencies. The installer will
5454
download versioned release with prebuilt binary from [github releases](https://github.com/hypnoglow/helm-s3/releases).

plugin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: "s3"
2-
version: "0.13.0"
2+
version: "0.14.0"
33
usage: "Manage chart repositories on Amazon S3"
44
description: |-
55
Provides AWS S3 protocol support for charts and repos. https://github.com/hypnoglow/helm-s3

0 commit comments

Comments
 (0)