Skip to content

Commit

Permalink
Merge pull request #448 from hypnoglow/update-go
Browse files Browse the repository at this point in the history
Update Go 1.22.5; prepare release 0.16.2
  • Loading branch information
hypnoglow authored Jul 26, 2024
2 parents 11a1da3 + 3e5dcff commit dc770b5
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.16.2] - 2024-07-26

### Changed

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

## [0.16.1] - 2024-07-16

### Changed
Expand Down
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG GO_VERSION=1.22
ARG GO_VERSION=1.22.5
ARG HELM_VERSION

FROM golang:${GO_VERSION}-alpine as build
Expand All @@ -11,9 +11,12 @@ WORKDIR /workspace/helm-s3

COPY . .

RUN CGO_ENABLED=0 go build -o bin/helm-s3 \
RUN CGO_ENABLED=0 \
go build \
-trimpath \
-mod=vendor \
-ldflags "-X main.version=${PLUGIN_VERSION}" \
-o bin/helm-s3 \
./cmd/helm-s3

# Correct the plugin manifest with docker-specific fixes:
Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ all: deps build
.PHONY: deps
deps:
@go mod tidy
@go mod vendor

.PHONY: build
build:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,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.16.1
$ helm plugin install https://github.com/hypnoglow/helm-s3.git --version 0.16.2

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 go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hypnoglow/helm-s3

go 1.22.0
go 1.22.5

require (
github.com/Masterminds/semver v1.5.0
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.16.1"
version: "0.16.2"
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
2 changes: 1 addition & 1 deletion website/content/docs/advanced-features/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ summary: |

## Relative chart URLs

Charts can be `push`-ed with `--releative` flag so their URLs in the index file
Charts can be `push`-ed with `--relative` flag so their URLs in the index file
will be relative to your repository root. This can be useful in various
scenarios, e.g. serving charts via HTTP, serving charts from replicated buckets,
etc.
Expand Down
2 changes: 1 addition & 1 deletion website/content/docs/install/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,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.16.0
$ helm plugin install https://github.com/hypnoglow/helm-s3.git --version 0.16.2

<!--more-->

Expand Down

0 comments on commit dc770b5

Please sign in to comment.