Skip to content

Commit

Permalink
Create v1.3.9
Browse files Browse the repository at this point in the history
Add release number to all the relevant places
  • Loading branch information
mroderick committed Jul 23, 2013
1 parent 9c30d81 commit 947f736
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,10 @@ $ npm test
PubSubJS uses [Semantic Versioning](http://semver.org/) for predictable versioning.

## Changelog
* v1.3.9
* Add release number to bower.json, package.json, tests, readme
* v1.3.8
* Fix issue 26
* v1.3.7
* Fix issue #18 - Make publish method return false when all subscribers have been removed
* v1.3.6
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.7",
"version": "1.3.9",
"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.7",
"version": "1.3.9",
"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.7'
version: '1.3.9'
},
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.7";
EXPECTED_VERSION = "1.3.9";

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

0 comments on commit 947f736

Please sign in to comment.