Skip to content

Commit 8cf27c9

Browse files
committed
Release v0.6.1
1 parent ab91965 commit 8cf27c9

File tree

2 files changed

+21
-7
lines changed

2 files changed

+21
-7
lines changed

CHANGELOG.md

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
1+
## 0.6.1 - 2017-05-25
2+
3+
- Fixed compatibility with Rake 12
4+
5+
- Open up to opal 0.11 (not officially supported yet)
6+
7+
18
## 0.6.0 - 2016-08-29
29

310
- Support for Opal 0.8/0.9 removed
11+
412
- Opal 0.10 support
13+
514
- Arity checking enabled by default
15+
616
- Dropped support for PhantomJS < 2.0
17+
718
- Removed `Kernel#caller` monkey patch so test file/line metadata is only available if supplied via test metadata or for failures. Should improve performance since an exception isn't thrown for every test to gather the data
819

20+
921
## 0.5.0 - 2015-12-08
1022

1123
- By default, any subject, it example block, before(:each), after(:each), and around that returns a promise will be executed asynchronously. Async is NOT yet supported for context level hooks. Async approach from < 0.4.3 will still work.
@@ -19,14 +31,14 @@
1931
- Remove copy of source from opal-rspec git repo (and just rely on git submodule fetch)
2032

2133
- Rake task improvements:
22-
* supports passing a test pattern (include and exclude) and FileLists besides 'spec/**/*_spec.rb
23-
* colors, formatter, and additional requires can be supplied from the command line via the SPEC_OPTS environment variable
34+
- supports passing a test pattern (include and exclude) and FileLists besides 'spec/**/*_spec.rb
35+
- colors, formatter, and additional requires can be supplied from the command line via the SPEC_OPTS environment variable
2436

2537
- Formatters:
26-
* Fixed issues with RSpec's BaseTextFormatter and made ProgressFormatter the default when run via the Rake task
27-
* Fix redundant messages with expectation fails
28-
* Browser formatter now works w/ progress bar and has a 'Dump to console' link that will put a clickable stack trace for a failed example in the browser console
29-
* JSON formatter supported
38+
- Fixed issues with RSpec's BaseTextFormatter and made ProgressFormatter the default when run via the Rake task
39+
- Fix redundant messages with expectation fails
40+
- Browser formatter now works w/ progress bar and has a 'Dump to console' link that will put a clickable stack trace for a failed example in the browser console
41+
- JSON formatter supported
3042

3143
- Fixed issues with constants/example group naming
3244

@@ -43,10 +55,12 @@
4355
- Fix some threading issues
4456
- Avoid some other calls to mutable-strings methods
4557

58+
4659
## 0.4.2 - 2015-03-28
4760

4861
- Avoid phantomjs warning messages
4962

63+
5064
## 0.4.1 - 2015-02-25
5165

5266
- Remove predicate matcher fixes as Opal supports $1..$9 special gvars.

lib/opal/rspec/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Opal
22
module RSpec
3-
VERSION = '0.6.0'
3+
VERSION = '0.6.1'
44
end
55
end

0 commit comments

Comments
 (0)