Skip to content

Commit

Permalink
Update version numbers and changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoglan committed Jul 15, 2012
1 parent 3bc6f70 commit f4c7b94
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 10 deletions.
11 changes: 11 additions & 0 deletions History.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
=== 0.8.3 / 2012-07-15

* Client#subscribe returns an array of Subscriptions if given an array of channels
* Allow different endpoints to be specified per-transport
* Only use IE's XDomainRequest for same-protocol requests
* Replace URL parser with one that treats relative URLs the same as the browser
* Improve logging of malformed requests and detect problems earlier
* Make sure socket connections are closed when a client session is timed out
* Stop WebSocket reconnecting after window.onbeforeunload


=== 0.8.2 / 2012-04-12
TestSwarm build: http://swarm.jcoglan.com/job/125/

Expand Down
2 changes: 1 addition & 1 deletion faye.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = "faye"
s.version = "0.8.2"
s.version = "0.8.3"
s.summary = "Simple pub/sub messaging for the web"
s.author = "James Coglan"
s.email = "jcoglan@gmail.com"
Expand Down
2 changes: 1 addition & 1 deletion lib/faye.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
require 'yajl'

module Faye
VERSION = '0.8.2'
VERSION = '0.8.3'

ROOT = File.expand_path(File.dirname(__FILE__))

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@
, "author" : "James Coglan <jcoglan@gmail.com> (http://jcoglan.com/)"
, "keywords" : ["comet", "websocket", "pubsub", "bayeux", "ajax", "http"]

, "version" : "0.8.2"
, "version" : "0.8.3"
, "engines" : {"node": ">=0.1.96"}
, "main" : "./node/faye-node"
, "dependencies" : {"cookiejar": "", "faye-websocket": ">=0.4.0"}
, "devDependencies" : {"jsclass": ""}

, "bugs" : "http://github.com/faye/faye/issues"

, "licenses" : [ { "type" : "MIT"
, "url" : "http://www.opensource.org/licenses/mit-license.php"
, "licenses" : [ { "type" : "MIT"
, "url" : "http://www.opensource.org/licenses/mit-license.php"
}
]

, "repositories" : [ { "type" : "git"
, "url" : "git://github.com/faye/faye.git"
, "repositories" : [ { "type" : "git"
, "url" : "git://github.com/faye/faye.git"
}
]
}
Expand Down
6 changes: 3 additions & 3 deletions site/src/pages/download.haml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
:textile
h3. Download Faye

The latest version is 0.8.2, released April 12 2012. It is open-source
The latest version is 0.8.3, released July 15 2012. It is open-source
software, released under the MIT license. You can follow development on
Faye's "GitHub page":http://github.com/faye/faye.

Expand All @@ -16,8 +16,8 @@

Alternatively you can grab the latest release package:

<a href="/assets/faye.0-8-2.zip" onclick="trackDownload('0.8.2')">
Download JavaScript version 0.8.2
<a href="/assets/faye.0-8-3.zip" onclick="trackDownload('0.8.3')">
Download JavaScript version 0.8.3
</a>

The above package contains these files:
Expand Down

0 comments on commit f4c7b94

Please sign in to comment.