Skip to content

Commit a11909a

Browse files
committed
Version 0.5.3
1 parent 7366e41 commit a11909a

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

HISTORY

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
=== CURRENT
22

3-
* Removing legacy scripts
3+
4+
5+
=== 0.5.3 2017-05-24
6+
7+
* Removing legacy scripts (James Pinto)
8+
* Fix #145 - broken CLI required loading active_support (James Pinto)
49

510
=== 0.5.2 2017-05-17
611

lib/oauth/cli/version_command.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class OAuth::CLI
22
class VersionCommand < BaseCommand
33
def run
4-
puts "OAuth for Ruby #{OAuth::VERSION}"
4+
puts "OAuth Gem #{OAuth::VERSION}"
55
end
66
end
77
end

lib/oauth/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module OAuth
2-
VERSION = "0.5.2"
2+
VERSION = "0.5.3"
33
end

test/units/test_cli.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def test_help
5858
def test_version
5959
out = run_command(%w[version])
6060

61-
assert_equal "OAuth for Ruby 0.5.2\n", out
61+
assert_equal "OAuth Gem #{OAuth::VERSION}\n", out
6262
end
6363

6464
def test_query_empty

0 commit comments

Comments
 (0)