Skip to content

Commit

Permalink
release 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zuazo committed Mar 20, 2017
1 parent c79b7a0 commit c85bc1d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to the [`dockerspec`](https://rubygems.org/gems/dockerspec/)

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## [0.4.1] - 2017-03-21
### Fixed in 0.4.1
- README: Fix latest dockerspec version in the instructions.

## [0.4.0] - 2017-03-20
[![Travis CI master Build Status](http://img.shields.io/travis/zuazo/dockerspec.svg?style=flat)](https://travis-ci.org/zuazo/dockerspec)

Expand Down Expand Up @@ -88,7 +92,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

- Initial release of `dockerspec`.

[Unreleased]: https://github.com/zuazo/dockerspec/compare/0.4.0...HEAD
[Unreleased]: https://github.com/zuazo/dockerspec/compare/0.4.1...HEAD
[0.4.1]: https://github.com/zuazo/dockerspec/compare/0.4.0...0.4.1
[0.4.0]: https://github.com/zuazo/dockerspec/compare/0.3.0...0.4.0
[0.3.0]: https://github.com/zuazo/dockerspec/compare/0.2.0...0.3.0
[0.2.0]: https://github.com/zuazo/dockerspec/compare/0.1.0...0.2.0
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
[![Gem Version](https://badge.fury.io/rb/dockerspec.svg)](https://rubygems.org/gems/dockerspec)
[![Dependency Status](http://img.shields.io/gemnasium/zuazo/dockerspec.svg?style=flat)](https://gemnasium.com/zuazo/dockerspec)
[![Code Climate](http://img.shields.io/codeclimate/github/zuazo/dockerspec.svg?style=flat)](https://codeclimate.com/github/zuazo/dockerspec)
[![Travis CI Build Status](http://img.shields.io/travis/zuazo/dockerspec/0.4.0.svg?style=flat)](https://travis-ci.org/zuazo/dockerspec)
[![Travis CI Build Status](http://img.shields.io/travis/zuazo/dockerspec/0.4.1.svg?style=flat)](https://travis-ci.org/zuazo/dockerspec)
[![Circle CI Build Status](https://circleci.com/gh/zuazo/dockerspec/tree/master.svg?style=shield)](https://circleci.com/gh/zuazo/dockerspec/tree/master)
[![Coverage Status](http://img.shields.io/coveralls/zuazo/dockerspec/0.4.0.svg?style=flat)](https://coveralls.io/github/zuazo/dockerspec?branch=0.4.0)
[![Coverage Status](http://img.shields.io/coveralls/zuazo/dockerspec/0.4.1.svg?style=flat)](https://coveralls.io/github/zuazo/dockerspec?branch=0.4.1)
[![Inline docs](http://inch-ci.org/github/zuazo/dockerspec.svg?branch=master&style=flat)](http://inch-ci.org/github/zuazo/dockerspec)

A small Ruby Gem to run RSpec, [Serverspec](http://serverspec.org/), [Infrataster](https://github.com/ryotarai/infrataster) and [Capybara](http://jnicklas.github.io/capybara/) tests against Dockerfiles or Docker images easily.
Expand Down Expand Up @@ -55,7 +55,7 @@ $ gem install dockerspec
Or you can add this line to the *Gemfile* of your application:

```ruby
gem 'dockerspec', '~> 0.3.0'
gem 'dockerspec', '~> 0.4.1'
```

And then execute:
Expand Down Expand Up @@ -392,7 +392,7 @@ If you are new to Ruby, you can follow these steps:

source 'https://rubygems.org'

gem 'dockerspec', '~> 0.3.0'
gem 'dockerspec', '~> 0.4.1'
```

#### 2. Create the *spec/* directory:
Expand Down
2 changes: 1 addition & 1 deletion dockerspec.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ require 'dockerspec/version'
Gem::Specification.new do |s|
s.name = 'dockerspec'
s.version = ::Dockerspec::VERSION
s.date = '2017-03-20'
s.date = '2017-03-21'
s.platform = Gem::Platform::RUBY
s.summary = 'Dockerspec'
s.description =
Expand Down
2 changes: 1 addition & 1 deletion lib/dockerspec/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ module Dockerspec
#
# Dockerspec Ruby Gem version.
#
VERSION = '0.4.1.dev'.freeze
VERSION = '0.4.1'.freeze
end

0 comments on commit c85bc1d

Please sign in to comment.