Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump version to 0.9.0 #605

Merged
merged 1 commit into from
Jan 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,13 @@ builds:
- CGO_ENABLED=0
ldflags: >
-X github.com/ohsu-comp-bio/funnel/version.BuildDate={{.Date}}
-X github.com/ohsu-comp-bio/funnel/version.GitCommit={{.Commit}}
-X github.com/ohsu-comp-bio/funnel/version.GitCommit={{.ShortCommit}}
-X github.com/ohsu-comp-bio/funnel/version.GitBranch={{.Env.GIT_BRANCH}}
-X github.com/ohsu-comp-bio/funnel/version.GitUpstream={{.Env.GIT_UPSTREAM}}
-X github.com/ohsu-comp-bio/funnel/version.Version={{.Version}}

dist: build/release

git:
short_hash: true

release:
draft: true

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

dockers:
- image: ohsucompbio/funnel
- image_templates:
- "ohsucompbio/funnel:{{.Version}}"
dockerfile: ./docker/Dockerfile
tag_templates:
- "{{ .Version }}"

brew:
github:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ git_upstream := $(shell git remote get-url $(shell git config branch.$(shell git
export GIT_BRANCH = $(git_branch)
export GIT_UPSTREAM = $(git_upstream)

export FUNNEL_VERSION=0.8.0
export FUNNEL_VERSION=0.9.0

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

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