Skip to content

Commit f986f11

Browse files
authored
prepare 0.9.6 release (#152)
1 parent 138c978 commit f986f11

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

INSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ $ gem install twurl
1010
```sh
1111
# verify installation
1212
$ twurl -v
13-
0.9.5
13+
0.9.6
1414
```
1515

1616
## Install from source
@@ -32,5 +32,5 @@ If you don't want to install Twurl globally on your system, use `--path` [option
3232
```
3333
$ bundle install --path path/to/directory
3434
$ bundle exec twurl -v
35-
0.9.5
35+
0.9.6
3636
```

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ This will print a pair of consumer_key and its associated bearer token. Note, to
9898
You can access different hosts for other Twitter APIs using the -H flag.
9999

100100
```sh
101-
twurl -H "ads-api.twitter.com" "/5/accounts"
101+
twurl -H "ads-api.twitter.com" "/7/accounts"
102102
```
103103

104104
## Uploading Media
@@ -165,7 +165,7 @@ twurl accounts
165165

166166
### Profiles and Bearer Tokens
167167

168-
While changing the default profile allows you to select which access token (OAuth1.0a) to use, bearer tokens don't link to any user profiles as the Application-only authentication doesn't require user context. That is, you can make an application-only request regardless of your default profile if you specify the `-c` (--consumer-key) option once you generate a bearer token with this consumer key. By default, twurl reads the current profile's consumer key and its associated bearer token from `~/.twurlrc` file.
168+
While changing the default profile allows you to select which access token (OAuth1.0a) to use, bearer tokens don't link to any user profiles as the Application-only authentication doesn't require user context. That is, you can make an application-only request regardless of your default profile if you specify the `-c` (`--consumer-key`) option once you generate a bearer token with this consumer key. By default, twurl reads the current profile's consumer key and its associated bearer token from `~/.twurlrc` file.
169169

170170
## Contributors
171171

lib/twurl/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module Twurl
22
class Version
33
MAJOR = 0 unless defined? Twurl::Version::MAJOR
44
MINOR = 9 unless defined? Twurl::Version::MINOR
5-
PATCH = 5 unless defined? Twurl::Version::PATCH
5+
PATCH = 6 unless defined? Twurl::Version::PATCH
66
PRE = nil unless defined? Twurl::Version::PRE # Time.now.to_i.to_s
77

88
class << self

0 commit comments

Comments
 (0)