Skip to content

Commit

Permalink
5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-yurchenko committed Dec 14, 2022
1 parent 80daf42 commit 7900df3
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @anton-yurchenko
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [5.0.1] - 2022-12-14

### Fixed

- [Issue #86](https://github.com/anton-yurchenko/git-release/issues/86) Panic on empty unreleased changelog (*Thanks to [Taylor Becker](https://github.com/tajobe)*)

### Changed

- Update dependencies
- Update Golang version

## [5.0.0] - 2022-09-14

### Changed
Expand Down Expand Up @@ -352,6 +363,7 @@ This is a major release as most of the code was refactored and some behavior was
- Control Release Draft through env.var 'DRAFT_RELEASE'
- Control Release Pre Release through env.var 'PRE_RELEASE'

[5.0.1]: https://github.com/anton-yurchenko/git-release/compare/v5.0.0...v5.0.1
[5.0.0]: https://github.com/anton-yurchenko/git-release/compare/v4.2.4...v5.0.0
[4.2.4]: https://github.com/anton-yurchenko/git-release/compare/v4.2.3...v4.2.4
[4.2.3]: https://github.com/anton-yurchenko/git-release/compare/v4.2.2...v4.2.3
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18 as builder
FROM golang:1.19 as builder
WORKDIR /opt/src
COPY . .
RUN groupadd -g 1000 appuser &&\
Expand All @@ -7,7 +7,7 @@ RUN CGO_ENABLED=0 go build -ldflags="-w -s" -o /opt/app

FROM scratch
LABEL org.opencontainers.image.source="https://github.com/anton-yurchenko/git-release"
LABEL org.opencontainers.image.version="v5.0.0"
LABEL org.opencontainers.image.version="v5.0.1"
LABEL org.opencontainers.image.authors="Anton Yurchenko <anton.doar@gmail.com>"
LABEL org.opencontainers.image.licenses="MIT"
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
)

// Version contains current application version
const Version string = "5.0.0"
const Version string = "5.0.1"

func init() {
log.SetReportCaller(false)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "git-release",
"version": "5.0.0",
"version": "5.0.1",
"description": "A GitHub Action for creating a GitHub Release with Assets and Changelog whenever a new Tag is pushed to the repository.",
"main": "wrapper.js",
"directories": {
Expand Down

0 comments on commit 7900df3

Please sign in to comment.