diff --git a/CHANGELOG b/CHANGELOG index 47c3c059..56d02909 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -5,13 +5,13 @@ Updated methods: -- HTTPServices#encode_params sorts parameters to aid in URL comparison (thanks, sholden!) -- get_connections is now aliased as get_connection (use whichever makes sense to you) Internal improvements: --- Fixed a readme typo (thanks, brycethornton!) +-- Fixed typos (thanks, brycethornton and jpemberthy!) +-- RealtimeUpdates will no longer execute challenge block unnecessarily (thanks, iainbeeston!) Testing improvements: -- Added parallel_tests to development gem file -- Fixed failing live tests -- Koala now tests against JRuby and Rubinius in 1.9 mode on Travis-CI - v1.3 New methods: -- OAuth#url_for_dialog creates URLs for Facebook dialog pages diff --git a/koala.gemspec b/koala.gemspec index 7fe33d7c..f8c24922 100644 --- a/koala.gemspec +++ b/koala.gemspec @@ -5,13 +5,12 @@ require 'koala/version' Gem::Specification.new do |s| s.name = %q{koala} s.version = Koala::VERSION - s.date = %q{2011-10-04} s.summary = %q{A lightweight, flexible library for Facebook with support for the Graph API, the REST API, realtime updates, and OAuth authentication.} s.description = %q{Koala is a lightweight, flexible Ruby SDK for Facebook. It allows read/write access to the social graph via the Graph and REST APIs, as well as support for realtime updates and OAuth and Facebook Connect authentication. Koala is fully tested and supports Net::HTTP and Typhoeus connections out of the box and can accept custom modules for other services.} s.homepage = %q{http://github.com/arsduo/koala} - s.authors = ["Alex Koppel, Chris Baclig, Rafi Jacoby, Context Optional"] + s.authors = ["Alex Koppel"] s.email = %q{alex@alexkoppel.com} s.files = `git ls-files`.split("\n") diff --git a/lib/koala/version.rb b/lib/koala/version.rb index 880ec917..d5c757d1 100644 --- a/lib/koala/version.rb +++ b/lib/koala/version.rb @@ -1,3 +1,3 @@ module Koala - VERSION = "1.4.0.rc1" + VERSION = "1.4.0" end \ No newline at end of file