diff --git a/CHANGELOG.md b/CHANGELOG.md index a1ced7b..27ac134 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,3 +5,13 @@ #### Fixed migration_version not getting generated in Rails v5+ * [GitHub PR](https://github.com/keshavbiswa/active_record_anonymizer/pull/6) + +## Version 0.2.0 + +### New Fixes + +#### Removed index from migration + +* [GitHub PR](https://github.com/keshavbiswa/active_record_anonymizer/pull/7) + +#### Fixed incorrect generator name in README.md \ No newline at end of file diff --git a/README.md b/README.md index a59cc0c..f9add10 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Install the gem using the following command: You must have anonymized columns in your Model to store the anonymized data. You can use the following migration generator to add anonymized columns to your existing table: - $ bin/rails generate anonymize User first_name last_name + $ bin/rails generate active_record_anonymizer:anonymize User first_name last_name This will generate a migration file similar to the following: ```ruby diff --git a/lib/active_record_anonymizer/version.rb b/lib/active_record_anonymizer/version.rb index c615f61..a4d598d 100644 --- a/lib/active_record_anonymizer/version.rb +++ b/lib/active_record_anonymizer/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ActiveRecordAnonymizer - VERSION = "0.1.1" + VERSION = "0.2.0" end