Skip to content

Commit 64727a1

Browse files
committed
Prepare for version 0.5.0 release
1 parent ed56a35 commit 64727a1

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## [Unreleased]
22

3+
## [0.5.0] - 2023-08-10
4+
5+
- Add configurable write timeout (2a31f84)
6+
- Use built-in Gem::Version class (066e0b6)
7+
38
## [0.4.0] - 2023-08-06
49

510
- Refactor Client into Authenticator, RequestBuilder, Connection, ResponseHandler (6bee1e9)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ ads_client.get("accounts")
5252

5353
## History and Philosophy
5454

55-
This library is a rewrite of the [Twitter Ruby library](https://github.com/sferik/twitter). Over 16 years, that library ballooned to over 3,000 lines of code (plus 7,500 lines of tests). At the time of writing, this library is about 200 lines of code (plus 200 test lines) and I’d like to keep it that way. That doesn’t mean new features won’t be added over time, but the benefits of potential new features must be weighed against the benefits of simplicity:
55+
This library is a rewrite of the [Twitter Ruby library](https://github.com/sferik/twitter). Over 16 years, that library ballooned to over 3,000 lines of code (plus 7,500 lines of tests). At the time of writing, this library is about 300 lines of code (plus 200 test lines) and I’d like to keep it that way. That doesn’t mean new features won’t be added over time, but the benefits of potential new features must be weighed against the benefits of simplicity:
5656

5757
* Less code is easier to maintain.
5858
* Less code means fewer bugs.

lib/x/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
require "rubygems/version"
22

33
module X
4-
VERSION = Gem::Version.create("0.4.0")
4+
VERSION = Gem::Version.create("0.5.0")
55
end

0 commit comments

Comments
 (0)