Skip to content

Commit 2310357

Browse files
authored
πŸ”€ Merge pull request #228 from oauth-xx/issue/227-prepare-release-0.5.7
πŸ’… Prepare Release 0.5.7
2 parents fda4f90 + 01efef4 commit 2310357

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

β€ŽCHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3232
* Fixed Unsafe String Comparison (#156, #209 by @pboling and @drosseau)
3333
* Fixed typos in Gemspec (#204, #203, #208 by @pboling)
3434
* Copyright Notice in LICENSE - added correct years (#217, #218 by @pboling)
35+
* Fixed request proxy Class constant reference scopes - was missing `::` in many places (#225, #226 by @pboling)
3536

3637
### Removed
3738

β€ŽREADME.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Ruby OAuth
22

3+
**NOTE**
4+
5+
This README, on branch `v0.5-maintenance`, targets 0.5.x series releases. For later releases please see the `msater` branch README.
6+
37
## Status
48

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

46-
| Ruby OAuth Version | Officially Supported Rubies | Unofficially Supported Rubies |
47-
|--------------------- | ------------------------------------------- | ----------------------------- |
48-
| 0.7.x (hypothetical) | 2.7, 3.0, 3.1 | 2.6 |
49-
| 0.6.x | 2.6, 2.7, 3.0 | 2.3, 2.4, 2.5 |
50-
| 0.5.x | 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 3.0 | |
50+
| Ruby OAuth Version | Maintenance Branch | Officially Supported Rubies | Unofficially Supported Rubies |
51+
|--------------------- | ------------------ | ------------------------------------------- | ----------------------------- |
52+
| 0.7.x (hypothetical) | N/A | 2.7, 3.0, 3.1 | 2.6 |
53+
| 0.6.x | `master` | 2.6, 2.7, 3.0 | 2.3, 2.4, 2.5 |
54+
| 0.5.x | `v0.5-maintenance` | 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 3.0 | |
5155

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

β€Žlib/oauth/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module OAuth
2-
VERSION = "0.5.7-pre1"
2+
VERSION = "0.5.7"
33
end

0 commit comments

Comments
Β (0)