forked from philnash/bitly
-
Notifications
You must be signed in to change notification settings - Fork 1
/
History.txt
177 lines (93 loc) · 3.38 KB
/
History.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
=== 0.10.1 / 2014-03-10
* 1 minor update
* Stops messing with the load path. Fixes issue #45. Thanks to halloffame.
=== 0.10.0 / 2014-2-23
* 2 major updates
* Updates OAuth2 gem dependency to include version 0.9.x
* Adds support for generic OAuth2 access token in V3 API, thanks to fzagarzazu (issue #47)
=== 0.9.0 / 2013-4-28
* 2 major updates
* Replaces Crack with MultiJson (issue #34)
* Adds timeout to v3 client calls (issue #27)
* 5 minor updates
* Adds qrcode_url method to Bitly::V3::Url class (issue #21)
* Ability to configure Bitly with a configure block (issue #16)
* Stops gem messing with the load path (issue #32)
* Adds development dependencies to Rakefile/gemspec (issue #33)
* Change Bitly::V3::User file to use ASCII quotes (issue #39)
=== 0.8.1 / 2013-15-01
* 1 major update
* bumps httparty and crack dependencies due to security vulnerability
=== 0.8.0
* 1 major update
* Updates OAuth2 dependency again
=== 0.7.0 / 2011-1-8
* 1 major bug fix
* Updates OAuth2 gem and fixes OAuth class
* 1 minor enhancement
Adds link_history to user model
=== 0.6.2 / 2011-11-10
* 2 minor enhancements
* Adds days parameter to clicks_by_minute v3 API call
* Converts Readme to markdown
* 2 minor bug fixes
* Increases HTTParty version to avoid issues with Rubygems
* Stops mutating arguments on array methods
=== 0.6.1 / 2011-01-12
* 1 minor enhancement
* Updated OAuth2 gem and used extra information to save login and api_key to user objects
=== 0.6.0 / 2011-01-03
* 1 major enhancement
* Added OAuth 2 and User calls for the version 3 API
=== 0.5.5 / 2010-12-22
* 1 minor bug fix
* fixed method redifined warnings
=== 0.5.4 / 2010-12-01
* 4 minor enhancements
* Added referrers, countries, clicks_by_minute and clicks_by_day calls to the version 3 API
=== 0.5.3 / 2010-07-30
* 1 minor enhancement
* Added the info call to the version 3 API
=== 0.5.2 / 2010-07-18
* 1 minor enhancement
* Added the lookup call to the version 3 API.
=== 0.5.1 / 2010-05-26
* 1 bug fix
* When expanding a short url with the v3 module, user hash and short url weren't being set properly
=== 0.5.0 / 2010-05-12
* Loads of major enhancements
* Support for version 3 of the bit.ly API
* deprecation for version 2 client object
=== 0.4.0 / 2009-12-19
* 1 major enhancement
* support for j.mp urls
=== 0.3.2 / 2009-11-15
* 1 bug fix
* called the wrong variable in case of error in the creation of a Url object
=== 0.3.1 / 2009-07-29
* 1 minor enhancement
* removed require 'rubygems' from library (http://gist.github.com/54177)
=== 0.3 / 2009-07-09
* 1 major enhancement
* a full set of tests, properly mocked
* 1 minor enhancement
* calling bitly.shorten(:history => 1) will add the url to the api user's history.
* 1 bug fix
* you can no longer call shorten with a keyword, this was unsupported in the API and consequently removed
=== 0.2 / 2009-06-23
* 1 enhancement
* Depends on Crack instead of JSON, so can run on Jruby
* 1 bug fix
* Does not choke when bit.ly chokes. Returns a BitlyError instead
=== 0.1.4 / 2009-04-13
* 1 bug fix
* Urls with parameters were choking, changed to using CGI.
=== 0.1.2 / 2009-03-12
* 1 minor enhancement
* Allows to add a keyword for shortening urls
=== 0.1.1 / 2009-01-26
* 1 bug fix
* Didn't include dependency on JSON
=== 0.1.0 / 2009-01-26
* 1 major enhancement
* First release