From 44a800fcf2a1ca8cf60769c5fe2131179b969c95 Mon Sep 17 00:00:00 2001 From: hmdne <54514036+hmdne@users.noreply.github.com> Date: Tue, 15 Nov 2022 08:26:10 +0100 Subject: [PATCH 1/2] Remove a Sprockets dependency --- opal-rspec.gemspec | 1 - 1 file changed, 1 deletion(-) diff --git a/opal-rspec.gemspec b/opal-rspec.gemspec index bc1a0ea..e26e40c 100644 --- a/opal-rspec.gemspec +++ b/opal-rspec.gemspec @@ -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' From 10e95818e0d69f958175d7c2c78ce603e680b760 Mon Sep 17 00:00:00 2001 From: hmdne <54514036+hmdne@users.noreply.github.com> Date: Thu, 24 Nov 2022 10:46:52 +0100 Subject: [PATCH 2/2] Release v1.0.0 --- CHANGELOG.md | 5 ++++- lib/opal/rspec/version.rb | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed618f7..f11ddd9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/lib/opal/rspec/version.rb b/lib/opal/rspec/version.rb index 712f5f9..1c2a4c2 100644 --- a/lib/opal/rspec/version.rb +++ b/lib/opal/rspec/version.rb @@ -1,5 +1,5 @@ module Opal module RSpec - VERSION = '1.0.0.alpha1' + VERSION = '1.0.0' end end