Skip to content

Commit

Permalink
chore($git): bump version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abe33 committed Jun 23, 2013
1 parent 0e2e92f commit 847a661
Show file tree
Hide file tree
Showing 7 changed files with 63 additions and 6 deletions.
57 changes: 57 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,60 @@
<a name="1.0.0"></a>
# 1.0.0 (2013-06-23)


## Bug Fixes

- **$tests:**
- tests broken on node v0.10.9
([cf3e1c61](https://github.com/abe33/spectacular/commit/cf3e1c611cc3d660badf497ff12a5841de345987))
- fix false positive on travis with failure only in node
([23b32f0a](https://github.com/abe33/spectacular/commit/23b32f0a29ed558a8ed61f2ea05dad779d6ce6db))
- **cli:** fix broken walkdir call if path doesn't exist
([1d2d30e5](https://github.com/abe33/spectacular/commit/1d2d30e52a371f70e88eb5744b8026f48348d888))
- **matchers:**
- fix missing diff in equal message
([5242a363](https://github.com/abe33/spectacular/commit/5242a363c33da1144b6bee678f5661d71f5f3e8c))
- fix invalid message for haveBeenCalled
([e92d8355](https://github.com/abe33/spectacular/commit/e92d83558fce4f0a0e28252ccabe9cb515b9c402))
- **phantomjs:** defining a property without a setter on an object failed
([7025b979](https://github.com/abe33/spectacular/commit/7025b979052bbdd68e211d32e81dd75941036efd))


## Features

- **$bin:** add help and version options
([36b80595](https://github.com/abe33/spectacular/commit/36b80595332f4e84198914c5d6ae06729c837625))
- **factories:** implements factory inheritance
([19e19039](https://github.com/abe33/spectacular/commit/19e19039ed68e2ed058ce119e04d3d168d965816))
- **matchers:**
- implements init hooks on matcher creation
([80ee4a9d](https://github.com/abe33/spectacular/commit/80ee4a9dbc2186b21b4227ddbb5ab0dad71ca3bf))
- implements support for full rspec syntax
([62460189](https://github.com/abe33/spectacular/commit/62460189bb9772917a0551260ea389eb28fff32c))


## Breaking Changes

- **matchers:** due to [62460189](https://github.com/abe33/spectacular/commit/62460189bb9772917a0551260ea389eb28fff32c),
matchers no longer can be defined as an object, the use of the spectacular helper is mandatory.

To migrate the code follow the example below:

exports.myMatcher = (value) ->
match: (actual) ->
@description = '...'
@message = '...'
actual is value

After:

spectacular.matcher 'myMatcher', ->
takes 'value'
description -> '...'
failureMessageForShould -> '...'
match (actual) -> actual is @value


<a name="0.0.4"></a>
# 0.0.4 (2013-06-15)

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Expand Up @@ -70,7 +70,7 @@ This will install Spectacular globally and allow you to use the Spectacular comm

First download Spectacular:

<div id="download"><a href='spectacular-0.0.4.zip' class='download' target='_blank'><i class='icon-download-alt'></i>Download</a></div>
<div id="download"><a href='spectacular-1.0.0.zip' class='download' target='_blank'><i class='icon-download-alt'></i>Download</a></div>

Then puts Spectacular in your html file:

Expand Down
2 changes: 1 addition & 1 deletion docs/js/specs.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/spectacular.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "spectacular",
"version": "0.0.4",
"version": "1.0.0",
"description": "Advanced BDD framework for CoffeeScript and JavaScript",
"author": "Cédric Néhémie <cedric.nehemie@gmail.com>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/bootstrap.coffee
Expand Up @@ -8,7 +8,7 @@ else

exports.spectacular = spectacular

spectacular.version = '0.0.4'
spectacular.version = '1.0.0'
spectacular.global = (->
return window unless typeof window is 'undefined'
return global unless typeof global is 'undefined'
Expand Down
2 changes: 1 addition & 1 deletion wintersmith.json
Expand Up @@ -7,7 +7,7 @@
],
"locals": {
"title": "Spectacular",
"version": "0.0.4"
"version": "1.0.0"
},
"plugins": [
"wintersmith-stylus",
Expand Down

0 comments on commit 847a661

Please sign in to comment.