From 810c814541792bc3272891a59bad808e45cbfcf0 Mon Sep 17 00:00:00 2001 From: Junpei Kawamoto Date: Tue, 31 Jan 2017 03:20:52 -0500 Subject: [PATCH] Increment the version to 0.4.0. --- .travis.yml | 4 ++-- CHANGELOG.md | 11 +++++++++++ README.md | 2 +- docs/content/README.md | 4 ++-- version.go | 2 +- 5 files changed, 17 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index ed54942..f9d7945 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,8 +2,8 @@ language: go go: - 1.7.4 env: -- TEST_ENV=true -- TEST_ENV=false +- TEST_ENV=true TEST_ENV2=false +- TEST_ENV=false TEST_ENV2=true install: - make get-deps script: diff --git a/CHANGELOG.md b/CHANGELOG.md index 66d6dc1..e0bb712 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 0.4.0 (2017-01-31) +### Added +- Build images based on installed runtime to reduce preparation time. + +### Fixed +- Avoid installing apt packages when another version number is given. +- env attribute in .travis.yml allows both a string and a list of strings, +- Before install step allows define environment variables, +- Garbled characters in outputs of containers. + + ## 0.3.5 (2017-01-26) ### Fixed - To lower repository names to create a docker image since docker tags allow only lower characters. diff --git a/README.md b/README.md index 53ae580..48a2c2b 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![MIT License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE) [![Build Status](https://travis-ci.org/jkawamoto/loci.svg?branch=master)](https://travis-ci.org/jkawamoto/loci) [![Code Climate](https://codeclimate.com/github/jkawamoto/loci/badges/gpa.svg)](https://codeclimate.com/github/jkawamoto/loci) -[![Release](https://img.shields.io/badge/release-0.3.5-brightgreen.svg)](https://github.com/jkawamoto/loci/releases/tag/v0.3.5) +[![Release](https://img.shields.io/badge/release-0.4.0-brightgreen.svg)](https://github.com/jkawamoto/loci/releases/tag/v0.4.0) [![Japanese](https://img.shields.io/badge/qiita-%E6%97%A5%E6%9C%AC%E8%AA%9E-brightgreen.svg)](http://qiita.com/jkawamoto/items/a409dd9cd6e63034aa28) [![Loci Logo](https://jkawamoto.github.io/loci/img/image.png)](https://jkawamoto.github.io/loci/) diff --git a/docs/content/README.md b/docs/content/README.md index f70d665..37f7dfa 100644 --- a/docs/content/README.md +++ b/docs/content/README.md @@ -4,13 +4,13 @@ description: >- Loci runs CI tests locally to make sure your commits will pass such tests before pushing to a remote repository. date: 2016-12-14 -lastmod: 2017-01-26 +lastmod: 2017-01-31 slug: readme --- [![MIT License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat)](./info/licenses/) [![Build Status](https://travis-ci.org/jkawamoto/loci.svg?branch=master)](https://travis-ci.org/jkawamoto/loci) [![Code Climate](https://codeclimate.com/github/jkawamoto/loci/badges/gpa.svg)](https://codeclimate.com/github/jkawamoto/loci) -[![Release](https://img.shields.io/badge/release-0.3.5-brightgreen.svg)](https://github.com/jkawamoto/loci/releases/tag/v0.3.5) +[![Release](https://img.shields.io/badge/release-0.4.0-brightgreen.svg)](https://github.com/jkawamoto/loci/releases/tag/v0.4.0) [![Japanese](https://img.shields.io/badge/qiita-%E6%97%A5%E6%9C%AC%E8%AA%9E-brightgreen.svg)](http://qiita.com/jkawamoto/items/a409dd9cd6e63034aa28) Loci runs CI tests locally to make sure your commits will pass such tests diff --git a/version.go b/version.go index 7385926..21cace2 100644 --- a/version.go +++ b/version.go @@ -14,5 +14,5 @@ const ( // Name defines the name of this command. Name string = "loci" // Version defines version number. - Version string = "0.3.5" + Version string = "0.4.0" )