Skip to content
This repository has been archived by the owner on Sep 14, 2023. It is now read-only.

Commit

Permalink
Increment version to 0.4.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkawamoto committed Feb 2, 2017
1 parent 36f841d commit 96de256
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)
Expand Down Expand Up @@ -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
~~~
Expand Down
2 changes: 1 addition & 1 deletion commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 4 additions & 2 deletions docs/content/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
~~~
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

0 comments on commit 96de256

Please sign in to comment.