Skip to content

Commit

Permalink
improvement: add v1 changelog, and update Makefile (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
kairen authored Oct 22, 2020
1 parent 729756b commit 5b1e75b
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 26 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Change Log

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/)


<a name="v1.0.0"></a>
## v1.0.0 - 2020-10-22
BUG FIXES:
- only support Terraform v0.12.x ([#7](https://github.com/getamis/terraform-ignition-etcd/issues/7))
- fix deprecated interpolation

ENHANCEMENTS:
- update changelog config.yaml
- update README.md
- update README.md ([#3](https://github.com/getamis/terraform-ignition-etcd/issues/3))


[Unreleased]: https://github.com/getamis/terraform-ignition-etcd/compare/v1.0.0...HEAD
24 changes: 0 additions & 24 deletions CHANGELOG.pre-v0.1.0.md

This file was deleted.

4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ TF_FILES = $(shell find . -type f -name "*.tf" -exec dirname {} \; | sort -u)
TF_TESTS = $(shell find ./test -type f -name "*.tf" -exec dirname {} \;|sort -u)

SEMTAG=tools/semtag
TAG_QUERY=v0.1.0..
TAG_QUERY=v1.0.0..

scope ?= "minor"

Expand Down Expand Up @@ -33,7 +33,7 @@ fmt:

.PHONY: changelog
changelog:
git-chglog -o CHANGELOG.md --next-tag `$(SEMTAG) final -s $(scope) -o -f` $(TAG_QUERY)
git-chglog -o CHANGELOG.md $(TAG_QUERY)

.PHONY: release
release:
Expand Down

0 comments on commit 5b1e75b

Please sign in to comment.