aws-cognito-srp 0.3.0 → 0.3.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b0d5fe8352f25fb8dd1a0512166431d191cc5615076e04ee3eae689622a51620
4
- data.tar.gz: e94dc74f89c15baaf88f7cc46d1d012905ef8af0f904905689569d4c87919fb9
3
+ metadata.gz: 180b657b77c00d5651c02440ac1c269fcf0ff0c0cfed35deb13224ea225585dc
4
+ data.tar.gz: 776b06f5fced0c6c96d0fbc3a02810f11273ebc4e28e00199108dac461774cfd
5
5
  SHA512:
6
- metadata.gz: 8c67137f6e4a7a3ad571225d64401cb719001fb59c1ac868e797872acf733e4431534bc9e8013822347a69612320f2c433e73bacf82bdf65f491989c887fccc5
7
- data.tar.gz: 464975f0f03cea514e01a02bc2b21f89da1e5bb3d3dde73aaafeb3371b6230f5475f0f2ddd04d93b16d3a50b79d5dfc4dd5999c24de7664c4b52e6ffcbfab613
6
+ metadata.gz: 56237ee2ed291d3a0a636f75ca9be3762444e8e18b989b75505d9d8a1c67ec1e3574e275ea83fb0b4d2fd873c524297a6280d03ffd93e19f88ddaaadef24f38b
7
+ data.tar.gz: de22d3f26a0e34adab3acafc37e8822601565aaef64bfeff9a39a29d69dfc67784421f5dc1458c8424cf78930bf92bf6ee7c0ae2c888e4f03bd8718b2a347520
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Aws::CognitoSrp for Ruby
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/aws-cognito-srp.svg?style=flat)](https://rubygems.org/gems/aws-cognito-srp)
4
- ![CI](https://github.com/pilaf/aws-cognito-srp-ruby/workflows/CI/badge.svg)
4
+ ![CI](https://github.com/beezwax/aws-cognito-srp-ruby/workflows/CI/badge.svg)
5
5
 
6
6
  An unofficial Ruby library implementing
7
7
  [AWS Cognito's SRP authentication flow](https://docs.aws.amazon.com/cognito/latest/developerguide/amazon-cognito-user-pools-authentication-flow.html#Using-SRP-password-verification-in-custom-authentication-flow).
@@ -59,4 +59,11 @@ git commits and the created tag, and push the `.gem` file to
59
59
  ## Contributing
60
60
 
61
61
  Bug reports and pull requests are welcome on GitHub at
62
- https://github.com/pilaf/aws-cognito-srp-ruby
62
+ https://github.com/beezwax/aws-cognito-srp-ruby
63
+
64
+ ## Disclaimer
65
+
66
+ This project is not sponsored by or otherwise affiliated with Amazon Web
67
+ Services, Inc., an Amazon.com, Inc. subsidiary. AWS and Amazon Cognito are
68
+ trademarks of Amazon.com, Inc., or its affiliates in the United States and/or
69
+ other countries.
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
 
11
11
  spec.summary = "AWS Cognito SRP auth for Ruby"
12
12
  spec.description = "Unofficial Ruby library implementing AWS Cognito's SRP authentication flow"
13
- spec.homepage = "https://github.com/pilaf/aws-cognito-srp-ruby"
13
+ spec.homepage = "https://github.com/beezwax/aws-cognito-srp-ruby"
14
14
  spec.license = "MIT"
15
15
 
16
16
  # Specify which files should be added to the gem when it is released.
@@ -2,6 +2,9 @@
2
2
 
3
3
  module Aws
4
4
  class CognitoSrp
5
- VERSION = "0.3.0"
5
+ VERSION = "0.3.0.1"
6
+ # ^
7
+ # NOTE: the fourth version number is just temporary to reflect an update to
8
+ # the gemspec (with no functional changes), remove it in next version bump
6
9
  end
7
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-cognito-srp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Viney
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2021-09-29 00:00:00.000000000 Z
13
+ date: 2021-10-01 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: aws-sdk-cognitoidentityprovider
@@ -120,7 +120,7 @@ files:
120
120
  - lib/aws/cognito_srp/errors.rb
121
121
  - lib/aws/cognito_srp/version.rb
122
122
  - lib/aws_cognito_srp.rb
123
- homepage: https://github.com/pilaf/aws-cognito-srp-ruby
123
+ homepage: https://github.com/beezwax/aws-cognito-srp-ruby
124
124
  licenses:
125
125
  - MIT
126
126
  metadata: {}
@@ -139,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
139
139
  - !ruby/object:Gem::Version
140
140
  version: '0'
141
141
  requirements: []
142
- rubygems_version: 3.0.6
142
+ rubygems_version: 3.2.3
143
143
  signing_key:
144
144
  specification_version: 4
145
145
  summary: AWS Cognito SRP auth for Ruby