diff --git a/CHANGELOG.md b/CHANGELOG.md index 9451b96..aa78d51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed ### Removed -## 2.0.0 - 2024-09-05 +## 2.0.1 - 2024-09-16 (returned to `open_id_authentication`) +COVERAGE: 55.56% -- 55/99 lines in 6 files +BRANCH COVERAGE: 23.53% -- 4/17 branches in 6 branches +### Added +- More Documentation +### Changed +- Renamed gem back to original `open_id_authentication` + +## 2.0.0 - 2024-09-05 (released as `open_id_authentication2`) COVERAGE: 55.56% -- 55/99 lines in 6 files BRANCH COVERAGE: 23.53% -- 4/17 branches in 6 branches ### Added @@ -22,6 +30,7 @@ BRANCH COVERAGE: 23.53% -- 4/17 branches in 6 branches ### Changed - Upgraded to RSpec v3 - Switched rack-openid => rack-openid2 +- Renamed gem to `open_id_authentication2` ### Fixed - Compatibility with Ruby 2.7+ ### Removed diff --git a/Gemfile.lock b/Gemfile.lock index 2a27fa8..a25fbb6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - open_id_authentication (2.0.0) + open_id_authentication (2.0.1) rack-openid2 (~> 2.0, >= 2.0.1) version_gem (~> 1.1, >= 1.1.4) diff --git a/lib/open_id_authentication/version.rb b/lib/open_id_authentication/version.rb index ce28eb7..8c681e6 100644 --- a/lib/open_id_authentication/version.rb +++ b/lib/open_id_authentication/version.rb @@ -1,5 +1,5 @@ module OpenIdAuthentication module Version - VERSION = "2.0.0" + VERSION = "2.0.1" end end