Skip to content

Commit

Permalink
Release 0.6.2 (#351)
Browse files Browse the repository at this point in the history
* Update docs
  • Loading branch information
Ale Paredes committed Jul 31, 2018
1 parent b2ae857 commit 7edc41d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change log

## v0.6.2 [(2018-07-31)](https://github.com/codeclimate/test-reporter/releases/tag/v0.6.2)

* [NEW] Add support for multiple JaCoCo source paths [#348][]

## v0.6.1 [(2018-07-30)](https://github.com/codeclimate/test-reporter/releases/tag/v0.6.1)

* [FIX] Support clover `path` attribute on file nodes in XML report [#349][]
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ MAN_FILES = $(wildcard man/*.md)
MAN_PAGES = $(patsubst man/%.md,man/%,$(MAN_FILES))

PROJECT = github.com/codeclimate/test-reporter
VERSION ?= 0.6.1
VERSION ?= 0.6.2
BUILD_VERSION = $(shell git log -1 --pretty=format:'%H')
BUILD_TIME = $(shell date +%FT%T%z)
LDFLAGS = -ldflags "-X $(PROJECT)/version.Version=${VERSION} -X $(PROJECT)/version.BuildVersion=${BUILD_VERSION} -X $(PROJECT)/version.BuildTime=${BUILD_TIME}"
Expand Down
4 changes: 3 additions & 1 deletion man/cc-test-reporter-format-coverage.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ As generated by `go test -coverprofile=c.out`
*GIT_BRANCH*, *GIT_COMMIT_SHA*, and *GIT_COMMITTED_AT* are required. *CI_NAME*,
*CI_BUILD_ID*, and *CI_BUILD_URL* will be used if present.

*JACOCO_SOURCE_PATH*, if present, explicitly sets the path to Java source files when using the JaCoCo format.
*JACOCO_SOURCE_PATH*, if present, explicitly sets the path to Java source files when using the JaCoCo format. You can set multiple source paths by including them separated by white space.

For example, `JACOCO_SOURCE_PATH="app1/main app2/main"`.

See **cc-test-reporter-env**(1).

0 comments on commit 7edc41d

Please sign in to comment.