Skip to content

Commit

Permalink
Merge pull request #91 from opal/staging
Browse files Browse the repository at this point in the history
Release v1.0.0, remove sprockets dependency
  • Loading branch information
hmdne authored Nov 24, 2022
2 parents d06fe7e + 10e9581 commit 8e6874b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Opal-RSpec Changelog

## 1.0.0.alpha1 - 2022-11-11
## 1.0.0 - 2022-11-24

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

Expand All @@ -14,6 +14,9 @@
* In `around` blocks, you must call `example.run_await` instead of just `example.run`
* 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)

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


## 0.8.0 - 2021-12-01

Expand Down
2 changes: 1 addition & 1 deletion lib/opal/rspec/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Opal
module RSpec
VERSION = '1.0.0.alpha1'
VERSION = '1.0.0'
end
end
1 change: 0 additions & 1 deletion opal-rspec.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]

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

spec.add_development_dependency 'bundler'
Expand Down

0 comments on commit 8e6874b

Please sign in to comment.