Skip to content

Commit

Permalink
4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-yurchenko committed Nov 25, 2021
1 parent cf94423 commit 05479fa
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 9 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [4.2.0] - 2021-11-25
### Added
- Retry assets uploads

### Changed
- Update dependencies

## [4.1.2] - 2021-10-18
### Fixed
- [Issue #54](https://github.com/anton-yurchenko/git-release/issues/54) Empty scopes during changelog parsing (*Thanks to [Wolf2323](https://github.com/Wolf2323)*)
Expand Down Expand Up @@ -221,7 +228,8 @@ 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'

[Unreleased]: https://github.com/anton-yurchenko/git-release/compare/v4.1.2...HEAD
[Unreleased]: https://github.com/anton-yurchenko/git-release/compare/v4.2.0...HEAD
[4.2.0]: https://github.com/anton-yurchenko/git-release/compare/v4.1.2...v4.2.0
[4.1.2]: https://github.com/anton-yurchenko/git-release/compare/v4.1.1...v4.1.2
[4.1.1]: https://github.com/anton-yurchenko/git-release/compare/v4.1.0...v4.1.1
[4.1.0]: https://github.com/anton-yurchenko/git-release/compare/v4.0.1...v4.1.0
Expand Down
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ RUN groupadd -g 1000 appuser &&\
RUN CGO_ENABLED=0 go build -ldflags="-w -s" -o /opt/app

FROM scratch
LABEL "repository"="https://github.com/anton-yurchenko/git-release"
LABEL "maintainer"="Anton Yurchenko <[email protected]>"
LABEL "version"="4.1.2"
LABEL org.opencontainers.image.source="https://github.com/anton-yurchenko/git-release"
LABEL org.opencontainers.image.version="v4.2.0"
LABEL org.opencontainers.image.authors="Anton Yurchenko <[email protected]>"
LABEL org.opencontainers.image.licenses="MIT"
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=builder /etc/passwd /etc/passwd
COPY LICENSE.md /LICENSE.md
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ A **GitHub Action** for a **GitHub Release** creation with **Assets** and **Chan
- Supports standard `v` prefix out of the box
- Allows custom SemVer prefixes
- Update a single pre-release with changes from Unreleased scope
- Retry assets upload on network interrupts

## Manual

Expand Down
Binary file modified bin/git-release-linux-amd64
Binary file not shown.
Binary file modified bin/git-release-windows-amd64.exe
Binary file not shown.
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 = "4.1.3-rc"
const Version string = "4.2.0"

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.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "git-release",
"version": "4.1.2",
"version": "4.2.0",
"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 All @@ -21,4 +21,4 @@
"@actions/core": "^1.6.0"
},
"devDependencies": {}
}
}

0 comments on commit 05479fa

Please sign in to comment.