Skip to content

Commit

Permalink
v1.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cainlevy committed Jun 8, 2020
1 parent 31c935b commit 342ce5d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## HEAD

## 1.10.1

### Fixed

* added a timeout to webhook sender
Expand Down
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ORG := keratin
PROJECT := authn-server
NAME := $(ORG)/$(PROJECT)
VERSION := 1.10.0
VERSION := 1.10.1
MAIN := main.go

.PHONY: clean
Expand Down Expand Up @@ -97,11 +97,12 @@ migrate:

# Cut a release of the current version.
.PHONY: release
release: test dist
release: dist
docker push $(NAME):latest
docker tag $(NAME):latest $(NAME):$(VERSION)
docker push $(NAME):$(VERSION)
git push
git tag v$(VERSION)
git push --tags
open https://github.com/$(NAME)/releases/tag/v$(VERSION)
open dist
xdg-open https://github.com/$(NAME)/releases/tag/v$(VERSION)
xdg-open dist

0 comments on commit 342ce5d

Please sign in to comment.