Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
keshavbiswa committed Mar 15, 2024
1 parent 990c920 commit 1570ef7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/active_record_anonymizer/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module ActiveRecordAnonymizer
VERSION = "0.1.1"
VERSION = "0.2.0"
end

0 comments on commit 1570ef7

Please sign in to comment.