Skip to content

Commit

Permalink
Bump to v0.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mcelicalderon committed Jun 12, 2020
1 parent 54155fe commit 55ec2a1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,15 @@
# Changelog

## [v0.12.0](https://github.com/graphql-devise/graphql_devise/tree/v0.12.0) (2020-06-11)
## [v0.12.1](https://github.com/graphql-devise/graphql_devise/tree/v0.12.1) (2020-06-12)

[Full Changelog](https://github.com/graphql-devise/graphql_devise/compare/v0.12.0...v0.12.1)

**Security fixes:**

- Insecure send password reset mutation? [\#98](https://github.com/graphql-devise/graphql_devise/issues/98)
- Avoid returning user information on password reset mutation [\#100](https://github.com/graphql-devise/graphql_devise/pull/100) ([00dav00](https://github.com/00dav00))

## [v0.12.0](https://github.com/graphql-devise/graphql_devise/tree/v0.12.0) (2020-06-12)

[Full Changelog](https://github.com/graphql-devise/graphql_devise/compare/v0.11.4...v0.12.0)

Expand Down
4 changes: 3 additions & 1 deletion graphql_devise.gemspec
Expand Up @@ -21,7 +21,9 @@ Gem::Specification.new do |spec|
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.test_files = Dir['spec/**/*'].reject { |f| f.match(/[.log|.sqlite3]$/) }
spec.test_files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").select { |f| f.match(%r{^spec/}) }
end

spec.required_ruby_version = '>= 2.2.0'

Expand Down
2 changes: 1 addition & 1 deletion lib/graphql_devise/version.rb
@@ -1,3 +1,3 @@
module GraphqlDevise
VERSION = '0.12.0'.freeze
VERSION = '0.12.1'.freeze
end

0 comments on commit 55ec2a1

Please sign in to comment.