Skip to content

Commit

Permalink
Corrected method name (any -> some) in mindash module
Browse files Browse the repository at this point in the history
  • Loading branch information
ifandelse committed Apr 30, 2016
1 parent 8e9848d commit 0e38b86
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![](logo/postaljs.jpg "Special Thanks to Derick Bailey for the postal logo!")

## Version 1.0.10 ([MIT](http://www.opensource.org/licenses/mit-license))
## Version 1.0.11 ([MIT](http://www.opensource.org/licenses/mit-license))

> See the [changelog](https://github.com/postaljs/postal.js/blob/master/changelog.md) for information on if the current version of postal has breaking changes compared to any older version(s) you might be using. Version 0.11+ removed the dependency on ConduitJS and significantly improved publishing performance. Version 1.0+ added an optional embedded-and-customized-lodash build.
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v1.0.11
* Fixed even more issues I missed with lodash 4
* Made note-to-self to be extra careful cutting new tags while sick.

## v1.0.10
* Fixed issue where removed lodash alias was still in use
* Fixed issue `this` context issue in postal.subscribe
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "postal.js",
"repo": "postaljs/postal.js",
"description": "Client-side messaging library",
"version": "1.0.10",
"version": "1.0.11",
"keywords": [
"pub/sub",
"pub",
Expand Down
2 changes: 1 addition & 1 deletion lib/postal.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* postal - Pub/Sub library providing wildcard subscriptions, complex message handling, etc. Works server and client-side.
* Author: Jim Cowart (http://ifandelse.com)
* Version: v1.0.10
* Version: v1.0.11
* Url: http://github.com/postaljs/postal.js
* License(s): MIT
*/
Expand Down
4 changes: 2 additions & 2 deletions lib/postal.lodash.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* postal - Pub/Sub library providing wildcard subscriptions, complex message handling, etc. Works server and client-side.
* Author: Jim Cowart (http://ifandelse.com)
* Version: v1.0.10
* Version: v1.0.11
* Url: http://github.com/postaljs/postal.js
* License(s): MIT
*/
Expand All @@ -12,7 +12,7 @@

var _ = {
after: require( "lodash/function/after" ),
any: require( "lodash/internal/arraySome" ),
some: require( "lodash/internal/arraySome" ),
bind: function( func, thisArg, arg ) {
return createPartialWrapper( func, 33, thisArg, [ arg ] );
},
Expand Down
4 changes: 2 additions & 2 deletions lib/postal.lodash.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/postal.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "postal",
"description": "Pub/Sub library providing wildcard subscriptions, complex message handling, etc. Works server and client-side.",
"version": "1.0.10",
"version": "1.0.11",
"homepage": "http://github.com/postaljs/postal.js",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/mindash.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ var createPartialWrapper = require( "lodash/internal/createPartialWrapper" );

var _ = {
after: require( "lodash/function/after" ),
any: require( "lodash/internal/arraySome" ),
some: require( "lodash/internal/arraySome" ),
bind: function( func, thisArg, arg ) {
return createPartialWrapper( func, 33, thisArg, [ arg ] );
},
Expand Down

0 comments on commit 0e38b86

Please sign in to comment.