Skip to content

Commit a630947

Browse files
committed
bump version 0.9.0
1 parent 4e4d03f commit a630947

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

.goreleaser.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,13 @@ builds:
99
- CGO_ENABLED=0
1010
ldflags: >
1111
-X github.com/ohsu-comp-bio/funnel/version.BuildDate={{.Date}}
12-
-X github.com/ohsu-comp-bio/funnel/version.GitCommit={{.Commit}}
12+
-X github.com/ohsu-comp-bio/funnel/version.GitCommit={{.ShortCommit}}
1313
-X github.com/ohsu-comp-bio/funnel/version.GitBranch={{.Env.GIT_BRANCH}}
1414
-X github.com/ohsu-comp-bio/funnel/version.GitUpstream={{.Env.GIT_UPSTREAM}}
1515
-X github.com/ohsu-comp-bio/funnel/version.Version={{.Version}}
1616
1717
dist: build/release
1818

19-
git:
20-
short_hash: true
21-
2219
release:
2320
draft: true
2421

@@ -29,10 +26,9 @@ archive:
2926
name_template: "{{.ProjectName}}-{{.Os}}-{{.Arch}}-{{.Version}}"
3027

3128
dockers:
32-
- image: ohsucompbio/funnel
29+
- image_templates:
30+
- "ohsucompbio/funnel:{{.Version}}"
3331
dockerfile: ./docker/Dockerfile
34-
tag_templates:
35-
- "{{ .Version }}"
3632

3733
brew:
3834
github:

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ git_upstream := $(shell git remote get-url $(shell git config branch.$(shell git
1111
export GIT_BRANCH = $(git_branch)
1212
export GIT_UPSTREAM = $(git_upstream)
1313

14-
export FUNNEL_VERSION=0.8.0
14+
export FUNNEL_VERSION=0.9.0
1515

1616
# LAST_PR_NUMBER is used by the release notes builder to generate notes
1717
# based on pull requests (PR) up until the last release.
18-
export LAST_PR_NUMBER = 546
18+
export LAST_PR_NUMBER = 591
1919

2020
VERSION_LDFLAGS=\
2121
-X "github.com/ohsu-comp-bio/funnel/version.BuildDate=$(shell date)" \

0 commit comments

Comments
 (0)