diff --git a/CHANGELOG.md b/CHANGELOG.md index 4096717..0201467 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [2.0.0] - 2024-09-22 +## [2.0.1] - 2024-09-27 +### Removed +- Activemodel dependency + +## [2.0.0] - 2024-09-27 ### Changed - Rewrite app to use interactor pattern diff --git a/Gemfile.lock b/Gemfile.lock index b42ec7b..1bb5f8e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,8 +1,7 @@ PATH remote: . specs: - lite-command (2.0.0) - activemodel + lite-command (2.0.1) ostruct GEM @@ -25,8 +24,6 @@ GEM erubi (~> 1.11) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - activemodel (7.2.1) - activesupport (= 7.2.1) activesupport (7.2.1) base64 bigdecimal diff --git a/lib/lite/command/version.rb b/lib/lite/command/version.rb index 55e58f6..131e515 100644 --- a/lib/lite/command/version.rb +++ b/lib/lite/command/version.rb @@ -3,7 +3,7 @@ module Lite module Command - VERSION = "2.0.0" + VERSION = "2.0.1" end end diff --git a/lite-command.gemspec b/lite-command.gemspec index 5a8f519..ba08d63 100644 --- a/lite-command.gemspec +++ b/lite-command.gemspec @@ -37,7 +37,6 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = %w[lib] - spec.add_dependency "activemodel" spec.add_dependency "ostruct" spec.add_development_dependency "bundler"