Skip to content

Commit fc8ba3f

Browse files
committed
Merge branch 'release/0.1.1'
2 parents f06b3a8 + 433a981 commit fc8ba3f

3 files changed

Lines changed: 21 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
1-
## [Unreleased]
1+
# Changelog
22

3-
## [0.1.0] - 2023-11-29
3+
## [0.1.1](https://github.com/appercept/cognito_idp-ruby/tree/0.1.1) (2023-12-07)
44

5-
- Initial release
5+
[Full Changelog](https://github.com/appercept/cognito_idp-ruby/compare/v0.1.0...0.1.1)
6+
7+
**Fixed bugs:**
8+
9+
- NoMethodError: undefined method `key?' for OpenStruct [\#1](https://github.com/appercept/cognito_idp-ruby/issues/1)
10+
11+
**Merged pull requests:**
12+
13+
- fix: UserInfo always responds to missing [\#2](https://github.com/appercept/cognito_idp-ruby/pull/2) ([rhatherall](https://github.com/rhatherall))
14+
15+
## [v0.1.0](https://github.com/appercept/cognito_idp-ruby/tree/v0.1.0) (2023-12-02)
16+
17+
[Full Changelog](https://github.com/appercept/cognito_idp-ruby/compare/6a859f5b15c9989aded52c92af8b99197ec5860d...v0.1.0)
18+
19+
20+
21+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*

lib/cognito_idp/user_info.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def method_missing(method, ...)
1414
end
1515

1616
def respond_to_missing?(method, include_private = false)
17-
@attributes.key?(method)
17+
true
1818
end
1919
end
2020
end

lib/cognito_idp/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module CognitoIdp
4-
VERSION = "0.1.0"
4+
VERSION = "0.1.1"
55
end

0 commit comments

Comments
 (0)