Skip to content

Commit 5e833e8

Browse files
Bump version number
1 parent 829a5b4 commit 5e833e8

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6-
## [Unreleased] - 2017-12-21
6+
## [1.0.0] - 2019-06-12
77

88
### Added
99

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

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

106+
[1.0.0]: https://github.com/gonzalo-bulnes/dredd-rack/compare/v0.11.0...v1.0.0
106107
[0.11.0]: https://github.com/gonzalo-bulnes/dredd-rack/compare/v0.10.0...v0.11.0
107108
[0.10.0]: https://github.com/gonzalo-bulnes/dredd-rack/compare/v0.9.0...v0.10.0
108109
[0.9.0]: https://github.com/gonzalo-bulnes/dredd-rack/compare/v0.8.2...v0.9.0

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ Dredd::Rack
77
[![Dredd Reference Version](https://img.shields.io/badge/dredd_reference_version-2.2.5-brightgreen.svg)](https://github.com/apiaryio/dredd)
88
[![Inline docs](http://inch-ci.org/github/gonzalo-bulnes/dredd-rack.svg?branch=master)](http://inch-ci.org/github/gonzalo-bulnes/dredd-rack)
99

10-
> **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]
11-
1210
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.
1311

1412
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`:
2826
```ruby
2927
# Gemfile
3028

31-
gem 'dredd-rack', '0.11.0' # see semver.org
29+
gem 'dredd-rack', '~> 1.0' # see semver.org
3230
```
3331

3432
Define which application Dredd::Rack must serve automatically:

lib/dredd/rack/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Dredd
22
module Rack
3-
VERSION = '0.11.0'
3+
VERSION = '1.0.0'
44
end
55
end

0 commit comments

Comments
 (0)