Skip to content

Commit

Permalink
release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zuazo committed Aug 29, 2015
1 parent 779cfc6 commit 5a0fe2e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ kitchen-in-travis CHANGELOG

This file is used to list changes made in each version of the `kitchen-in-travis` cookbook.

## v0.2.0 (2015-08-29)

* Use cURL instead of Wget (fixes *gpg: no valid OpenPGP data found*).
* `travis.yml`:
* Add `sudo: true`.
* Remove `language` configuration option.
* README: Multiple documentation improvements.

## v0.1.0 (2015-07-16)

* Initial release of `kitchen-in-travis`.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
kitchen-in-travis Cookbook [![Build Status](http://img.shields.io/travis/zuazo/kitchen-in-travis/0.1.0.svg?style=flat)](https://travis-ci.org/zuazo/kitchen-in-travis)
kitchen-in-travis Cookbook [![Build Status](http://img.shields.io/travis/zuazo/kitchen-in-travis/0.2.0.svg?style=flat)](https://travis-ci.org/zuazo/kitchen-in-travis)
==========================

Proof of concept cookbook to run [test-kitchen](http://kitchen.ci/) inside [Travis CI](https://travis-ci.org/) using [kitchen-docker](https://github.com/portertech/kitchen-docker) in [User Mode Linux](https://github.com/jpetazzo/sekexe).
Expand All @@ -12,7 +12,7 @@ rvm:
sudo: true

before_script:
- source <(curl -sL https://raw.githubusercontent.com/zuazo/kitchen-in-travis/0.1.0/scripts/start_docker.sh)
- source <(curl -sL https://raw.githubusercontent.com/zuazo/kitchen-in-travis/0.2.0/scripts/start_docker.sh)

script:
# Run test-kitchen with docker driver, for example:
Expand Down Expand Up @@ -108,7 +108,7 @@ rvm:
sudo: true
before_script:
- source <(curl -sL https://raw.githubusercontent.com/zuazo/kitchen-in-travis/0.1.0/scripts/start_docker.sh)
- source <(curl -sL https://raw.githubusercontent.com/zuazo/kitchen-in-travis/0.2.0/scripts/start_docker.sh)
script:
- bundle exec rake integration:docker
Expand Down Expand Up @@ -172,7 +172,7 @@ env:
- KITCHEN_REGEXP=ubuntu
before_script:
- source <(curl -sL https://raw.githubusercontent.com/zuazo/kitchen-in-travis/0.1.0/scripts/start_docker.sh)
- source <(curl -sL https://raw.githubusercontent.com/zuazo/kitchen-in-travis/0.2.0/scripts/start_docker.sh)
script:
- bundle exec rake integration:docker
Expand Down
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
User Mode Linux.
EOH
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '0.2.0' # WiP
version '0.2.0'

depends 'nginx', '~> 2.7'

0 comments on commit 5a0fe2e

Please sign in to comment.