diff --git a/CHANGELOG.md b/CHANGELOG.md index d59fc01..3377125 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/README.md b/README.md index b72a081..597b5b0 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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: diff --git a/lib/dredd/rack/version.rb b/lib/dredd/rack/version.rb index 1b7fce1..d46a099 100644 --- a/lib/dredd/rack/version.rb +++ b/lib/dredd/rack/version.rb @@ -1,5 +1,5 @@ module Dredd module Rack - VERSION = '0.11.0' + VERSION = '1.0.0' end end