Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare v0.14.0 release #206

Merged
merged 1 commit into from
Aug 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,3 @@ archives:
files:
- LICENSE
- plugin.yaml

release:
draft: true
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,28 @@ All 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/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.14.0] - 2022-08-24

### Changed

- The plugin command line interface changed to use [cobra](https://github.com/spf13/cobra)
instead of kingpin. This provides more compatibility and the same UX as in Helm.
[Refs: [#202](https://github.com/hypnoglow/helm-s3/pull/202)]

- Go updated to 1.19.
[Refs: [#199](https://github.com/hypnoglow/helm-s3/pull/199)]

- Supported (and tested against) Helm versions updated to 3.9.3.
[Refs: [#201](https://github.com/hypnoglow/helm-s3/pull/201)]

- Completed the migration of the CI pipeline to Github Actions.
[Refs: [#166](https://github.com/hypnoglow/helm-s3/pull/166) [#205](https://github.com/hypnoglow/helm-s3/pull/205)]

### Fixed

- Fixed a bug where the plugin failed to fetch charts with special characters
in version (e.g. `v1.0.1+build.123`).
[Refs: [#158](https://github.com/hypnoglow/helm-s3/issues/158) [#204](https://github.com/hypnoglow/helm-s3/pull/204)]

## [0.13.0] - 2022-08-07

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<p align="left"><img src=".github/assets/icon_with_name.png" width="500" alt="helm-s3 Logo"></p>

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

You can install a specific release version:

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

To use the plugin, you do not need any special dependencies. The installer will
download versioned release with prebuilt binary from [github releases](https://github.com/hypnoglow/helm-s3/releases).
Expand Down
2 changes: 1 addition & 1 deletion plugin.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "s3"
version: "0.13.0"
version: "0.14.0"
usage: "Manage chart repositories on Amazon S3"
description: |-
Provides AWS S3 protocol support for charts and repos. https://github.com/hypnoglow/helm-s3
Expand Down