diff --git a/CHANGELOG.md b/CHANGELOG.md index e8249da..24ef55e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.0.1 (January 10, 2023) +* Update license information +* Update README with instructions on running system tests + ## 1.0.0 (December 29, 2022) * Add Docker to allow consistent development environment * Remove unneeded files which were added during scaffolding diff --git a/Gemfile.lock b/Gemfile.lock index 36a0c2b..59b7a21 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - filepond-rails (1.0.0) + filepond-rails (1.0.1) rails (>= 7.0, < 8) GEM diff --git a/README.md b/README.md index a6c9170..05138f7 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,7 @@ docker compose run app bash You should now be able to run tests locally within this bash container: ```bash -bin/rails test +bin/rails test && bin/rails app:test:system ``` ## License diff --git a/lib/filepond/rails/version.rb b/lib/filepond/rails/version.rb index 097ecb3..8c7a00b 100644 --- a/lib/filepond/rails/version.rb +++ b/lib/filepond/rails/version.rb @@ -2,6 +2,6 @@ module Filepond module Rails - VERSION = '1.0.0' + VERSION = '1.0.1' end end