Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzalo-bulnes committed Jun 12, 2019
1 parent 829a5b4 commit 5e833e8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased] - 2017-12-21
## [1.0.0] - 2019-06-12

### Added

Expand Down Expand Up @@ -103,6 +103,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).

The original implementation of the Rake task was shared in this [gist][gist].

[1.0.0]: https://github.com/gonzalo-bulnes/dredd-rack/compare/v0.11.0...v1.0.0
[0.11.0]: https://github.com/gonzalo-bulnes/dredd-rack/compare/v0.10.0...v0.11.0
[0.10.0]: https://github.com/gonzalo-bulnes/dredd-rack/compare/v0.9.0...v0.10.0
[0.9.0]: https://github.com/gonzalo-bulnes/dredd-rack/compare/v0.8.2...v0.9.0
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ Dredd::Rack
[![Dredd Reference Version](https://img.shields.io/badge/dredd_reference_version-2.2.5-brightgreen.svg)](https://github.com/apiaryio/dredd)
[![Inline docs](http://inch-ci.org/github/gonzalo-bulnes/dredd-rack.svg?branch=master)](http://inch-ci.org/github/gonzalo-bulnes/dredd-rack)

> **DISCLAIMER**: This is an early version of Dredd::Rack, please be aware that it will not be stable until `v1.0.0`. At any moment, [feedback][issues] is more than welcome! : ) -- [GB][gonzalo-bulnes]
This gem provides a [Dredd][dredd] runner and a `dredd` rake task to make [API blueprint][blueprint] testing convenient for Rack applications. When verifying blueprints locally, an application server is automatically set up, without need of any manual intervention.

Besides being convenient, that allows to use the API blueprints as acceptance test suites to practice [BDD][rspec-book] with Dredd and RSpec, for example, while clients developers use [Apiary][apiary] as a mock server.
Expand All @@ -28,7 +26,7 @@ Add the gem to your `Gemfile`:
```ruby
# Gemfile

gem 'dredd-rack', '0.11.0' # see semver.org
gem 'dredd-rack', '~> 1.0' # see semver.org
```

Define which application Dredd::Rack must serve automatically:
Expand Down
2 changes: 1 addition & 1 deletion lib/dredd/rack/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Dredd
module Rack
VERSION = '0.11.0'
VERSION = '1.0.0'
end
end

0 comments on commit 5e833e8

Please sign in to comment.