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

Commit

Permalink
Increment the version to 0.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkawamoto committed Jan 31, 2017
1 parent 9ba451a commit 810c814
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 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.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/)
Expand Down
4 changes: 2 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-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
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.3.5"
Version string = "0.4.0"
)

0 comments on commit 810c814

Please sign in to comment.