Skip to content

Commit

Permalink
v0.5.0 description
Browse files Browse the repository at this point in the history
  • Loading branch information
LeKovr committed Nov 21, 2023
1 parent 312350d commit 24ca204
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [0.5.0] - 2023-11-21

### Changed

* Add CHANGELOG.md
* Update docker workflow
* Add .docker-wait for `make test-docker`
* Move to docker compose plugin

### Dependencies updated

* Fix: Dependabot alert #32
* Bump deps versions
* Bump go to 1.21
* Build docker with go:1.21-alpine3.18

10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ else
endif

APP_VERSION ?= $(shell git describe --tags --always)
# Last project tag (used in `make changelog`)
RELEASE ?= $(shell git describe --tags --abbrev=0 --always)

GOLANG_VERSION ?= 1.21-alpine3.18

OS ?= linux
Expand Down Expand Up @@ -116,6 +119,13 @@ $(PRG): $(SOURCES) $(PLUGINS)
run: build
./$(PRG) --debug

## Changes from last tag
changelog:
@echo Changes since $(RELEASE)
@echo
@git log $(RELEASE)..@ --pretty=format:"* %s"


# ------------------------------------------------------------------------------
## Plugin support
#:
Expand Down

0 comments on commit 24ca204

Please sign in to comment.