Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

馃拝 Prepare Release 0.5.7 #228

Merged
merged 4 commits into from Nov 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -32,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Fixed Unsafe String Comparison (#156, #209 by @pboling and @drosseau)
* Fixed typos in Gemspec (#204, #203, #208 by @pboling)
* Copyright Notice in LICENSE - added correct years (#217, #218 by @pboling)
* Fixed request proxy Class constant reference scopes - was missing `::` in many places (#225, #226 by @pboling)

### Removed

Expand Down
14 changes: 9 additions & 5 deletions README.md
@@ -1,5 +1,9 @@
# Ruby OAuth

**NOTE**

This README, on branch `v0.5-maintenance`, targets 0.5.x series releases. For later releases please see the `msater` branch README.

## Status

| Project | Ruby Oauth |
Expand Down Expand Up @@ -43,11 +47,11 @@ Targeted ruby compatibility is non-EOL versions of Ruby, currently 2.6, 2.7, and
3.0. Ruby is limited to 2.0+ in the gemspec, and this may change while the gem is
still at version 0.x. The `master` branch currently targets 0.6.x releases.

| Ruby OAuth Version | Officially Supported Rubies | Unofficially Supported Rubies |
|--------------------- | ------------------------------------------- | ----------------------------- |
| 0.7.x (hypothetical) | 2.7, 3.0, 3.1 | 2.6 |
| 0.6.x | 2.6, 2.7, 3.0 | 2.3, 2.4, 2.5 |
| 0.5.x | 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 3.0 | |
| Ruby OAuth Version | Maintenance Branch | Officially Supported Rubies | Unofficially Supported Rubies |
|--------------------- | ------------------ | ------------------------------------------- | ----------------------------- |
| 0.7.x (hypothetical) | N/A | 2.7, 3.0, 3.1 | 2.6 |
| 0.6.x | `master` | 2.6, 2.7, 3.0 | 2.3, 2.4, 2.5 |
| 0.5.x | `v0.5-maintenance` | 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 3.0 | |

NOTE: 0.5.7 is anticipated as last release of the 0.5.x series.

Expand Down
2 changes: 1 addition & 1 deletion lib/oauth/version.rb
@@ -1,3 +1,3 @@
module OAuth
VERSION = "0.5.7-pre1"
VERSION = "0.5.7"
end