From 96de2567c0a40e7990a5cd0956874300016ac08f Mon Sep 17 00:00:00 2001 From: Junpei Kawamoto Date: Wed, 1 Feb 2017 19:21:49 -0500 Subject: [PATCH] Increment version to 0.4.2. --- CHANGELOG.md | 8 ++++++++ README.md | 4 +++- commands.go | 2 +- docs/content/README.md | 6 ++++-- version.go | 2 +- 5 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97b2465..716c877 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.4.2 (2017-02-01) +### Added +* Support no-color and no-build-cache options. + +### Fixed +- before_install, install, before_script, and script attributes support both a single string and a list of strings. + + ## 0.4.1 (2017-01-31) ### Update - Allow unbounded variables in Travis's scripts. diff --git a/README.md b/README.md index f57c962..ffa6f43 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.4.1-brightgreen.svg)](https://github.com/jkawamoto/loci/releases/tag/v0.4.1) +[![Release](https://img.shields.io/badge/release-0.4.2-brightgreen.svg)](https://github.com/jkawamoto/loci/releases/tag/v0.4.2) [![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/) @@ -41,6 +41,8 @@ GLOBAL OPTIONS: --https-proxy URL URL for a https proxy server. [$HTTPS_PROXY] --no-proxy LIST Comma separated URL LIST for which proxies won't be used. [$NO_PROXY] + --no-build-cache Do not use cache when building the image. + --no-color Omit to print color codes. --help, -h show help --version, -v print the version ~~~ diff --git a/commands.go b/commands.go index 6a36fe0..fb5d074 100644 --- a/commands.go +++ b/commands.go @@ -66,7 +66,7 @@ var GlobalFlags = []cli.Flag{ }, cli.BoolFlag{ Name: "no-build-cache", - Usage: "Do not use cache when building the image", + Usage: "Do not use cache when building the image.", }, cli.BoolFlag{ Name: "no-color", diff --git a/docs/content/README.md b/docs/content/README.md index bbf997c..815b453 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-31 +lastmod: 2017-02-01 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.4.1-brightgreen.svg)](https://github.com/jkawamoto/loci/releases/tag/v0.4.1) +[![Release](https://img.shields.io/badge/release-0.4.2-brightgreen.svg)](https://github.com/jkawamoto/loci/releases/tag/v0.4.2) [![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 @@ -47,6 +47,8 @@ GLOBAL OPTIONS: --https-proxy URL URL for a https proxy server. [$HTTPS_PROXY] --no-proxy LIST Comma separated URL LIST for which proxies won't be used. [$NO_PROXY] + --no-build-cache Do not use cache when building the image. + --no-color Omit to print color codes. --help, -h show help --version, -v print the version ~~~ diff --git a/version.go b/version.go index 69ffd67..c3f43b4 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.4.1" + Version string = "0.4.2" )