Skip to content

Commit 8e6874b

Browse files
authored
Merge pull request #91 from opal/staging
Release v1.0.0, remove sprockets dependency
2 parents d06fe7e + 10e9581 commit 8e6874b

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Opal-RSpec Changelog
22

3-
## 1.0.0.alpha1 - 2022-11-11
3+
## 1.0.0 - 2022-11-24
44

55
- Drop support for anything below Opal v1.6.alpha1
66

@@ -14,6 +14,9 @@
1414
* In `around` blocks, you must call `example.run_await` instead of just `example.run`
1515
* Only `PromiseV2` is supported (`PromiseV1` may work, but you should migrate your application to use `PromiseV2` nevertheless, in Opal 2.0 it will become the default)
1616

17+
- Drop a requirement of `opal-sprockets`
18+
* Sprockets support is still provided, but you need to manually `require "opal/rspec/sprockets"`
19+
1720

1821
## 0.8.0 - 2021-12-01
1922

lib/opal/rspec/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Opal
22
module RSpec
3-
VERSION = '1.0.0.alpha1'
3+
VERSION = '1.0.0'
44
end
55
end

opal-rspec.gemspec

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ Gem::Specification.new do |spec|
2525
spec.require_paths = ["lib"]
2626

2727
spec.add_dependency 'opal', ['>= 1.6.0a', '< 2.0']
28-
spec.add_dependency 'opal-sprockets', '< 2.0'
2928
spec.add_dependency 'rake', '>= 12.0'
3029

3130
spec.add_development_dependency 'bundler'

0 commit comments

Comments
 (0)