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

chore(release): release v0.1.0 #1

Merged
merged 2 commits into from
Jun 3, 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
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