Skip to content

Commit

Permalink
chore(release): release v0.1.0
Browse files Browse the repository at this point in the history
Merge pull request #1 from qri-io/release
  • Loading branch information
b5 authored Jun 3, 2019
2 parents b3a4bf6 + 1e0a534 commit cfe2335
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
version: '2'
jobs:
build:
working_directory: /go/src/github.com/qri-io/iso8601
docker:
- image: circleci/golang:1.12
environment:
TEST_RESULTS: /tmp/test-results
GO111MODULE: "on"
steps:
- checkout
- run: mkdir -p $TEST_RESULTS
- restore_cache:
key: dependency-cache-{{ checksum "go.sum" }}
- run:
name: Get CI Deps
command: go get github.com/jstemmer/go-junit-report golang.org/x/lint/golint
- run:
name: Run Lint Tests
command: golint -set_exit_status ./...
- run:
name: Go Vet
command: go vet ./...
- run:
name: Run Tests
command: |
trap "go-junit-report <${TEST_RESULTS}/go-test.out > ${TEST_RESULTS}/go-test-report.xml" EXIT
make test | tee ${TEST_RESULTS}/go-test.out
- save_cache:
key: dependency-cache-{{ checksum "go.sum" }}
paths:
- /go/pkg/mod
- run:
name: Publish coverage info to codecov.io
command: bash <(curl -s https://codecov.io/bash)
- store_artifacts:
path: /tmp/test-results
destination: raw-test-output
- store_test_results:
path: /tmp/test-results
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<a name="0.1.0"></a>
# (2019-06-03)

This is the first proper release of `iso8601`. In preparation for go 1.13, in which `go.mod` files and go modules are the primary way to handle go dependencies, we are going to do an official release of all our modules. This will be version v0.1.0 of `iso8601`.

### Features

* **string:** add String methods ([b3a4bf6](https://github.com/qri-io/iso8601/commit/b3a4bf6))
* initial iso8601 package ([4b2347c](https://github.com/qri-io/iso8601/commit/4b2347c))



6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Let's keep all our changelog commands the same across all our packages:
update-changelog:
conventional-changelog -p angular -i CHANGELOG.md -s

test:
go test -v --coverprofile=coverage.txt

0 comments on commit cfe2335

Please sign in to comment.