Skip to content

Commit

Permalink
v1.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mroderick committed Jul 4, 2013
1 parent 8272b41 commit 87fd8b6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,8 @@ $ npm test
PubSubJS uses [Semantic Versioning](http://semver.org/) for predictable versioning.

## Changelog
* v1.3.7
* Fix issue #18 - Make publish method return false when all subscribers have been removed
* v1.3.6
* Add [bower](http://bower.io) support

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "PubSubJS",
"version": "1.3.6",
"version": "1.3.7",
"main": "src/pubsub.js",
"ignore": [
"**/.*",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pubsub-js",
"version": "1.3.6",
"version": "1.3.7",
"description": "Dependency free publish/subscribe library",
"main": "./src/pubsub.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion src/pubsub.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ https://github.com/mroderick/PubSubJS

var PubSub = {
name: 'PubSubJS',
version: '1.3.6'
version: '1.3.7'
},
messages = {},
lastUid = -1;
Expand Down
2 changes: 1 addition & 1 deletion test/test-module.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"use strict";

var PubSub = global.PubSub || require("../src/pubsub"),
EXPECTED_VERSION = "1.3.6";
EXPECTED_VERSION = "1.3.7";

buster.testCase( "PubSub module", {
"should report version correctly" : function(){
Expand Down

0 comments on commit 87fd8b6

Please sign in to comment.