Skip to content

Commit

Permalink
Prepping for v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ifandelse committed Sep 4, 2015
1 parent 6ccc94c commit 12bc1a9
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 40 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# postal.xframe

## Version 0.3.2 (Dual Licensed [MIT](http://www.opensource.org/licenses/mit-license) & [GPL](http://www.opensource.org/licenses/gpl-license))
## Version 0.4.0 (Dual Licensed [MIT](http://www.opensource.org/licenses/mit-license) & [GPL](http://www.opensource.org/licenses/gpl-license))

*(special thanks to @rbtbar for the IE 10/11 fixes where iframes aren't reporting a host or protocol)*

Expand Down
15 changes: 4 additions & 11 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postal.xframe",
"version": "0.3.2",
"version": "0.4.0",
"description": "postal.js/postal.federation plugin for federating instances of postal.js across iframe/window boundaries.",
"homepage": "https://github.com/postaljs/postal.xframe",
"keywords": [
Expand All @@ -19,15 +19,8 @@
"lib/postal.xframe.js"
],
"dependencies": {
"lodash": "3.x"
},
"devDependencies": {
"jquery": "~1.10.2",
"bootstrap": "~3.0.3",
"expect": "0.1.2",
"mocha": "~1.17.0",
"postal.diagnostics": "~0.7.0",
"postal.js": "~0.11.2",
"postal.federation": ">=0.4.0"
"lodash": "3.x",
"postal.federation": ">=0.4.0",
"postal.js": "1.x"
}
}
12 changes: 10 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
##v0.3.2
## v0.4.0

* Switched examples and spec files to use node modules instead of bower
* Updated dependencies in bower.json
* Removed minified file from bower main
* CommonJS now exports instance instead of factory function

## v0.3.2

* Fixed a bug where cross frame publishing failed in Safari due to postMessage.apply failing silently.

##v0.3.0-rc1
## v0.3.0-rc1

* CommonJS module wrapper now returns a factory function, to which you need to pass a postal instance (ideally, you can pass the output of the postal.federation module since it returns postal, but passing postal will work as well as long as postal.federation has been loaded prior).
8 changes: 4 additions & 4 deletions component.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "postal.xframe",
"version": "0.3.2",
"version": "0.4.0",
"main": ["lib/postal.xframe.js"],
"dependencies": {
"lodash": "~2.4.1",
"postal.js": "~0.11.2",
"postal.federation": "~0.2.4"
"lodash": "3.x",
"postal.js": "1.x",
"postal.federation": "~0.4.0"
}
}
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var banner = ["/**",
" * Author: <%= pkg.author %>",
" * Version: v<%= pkg.version %>",
" * Url: <%= pkg.homepage %>",
" * License(s): <% pkg.licenses.forEach(function( license, idx ){ %><%= license.type %><% if(idx !== pkg.licenses.length-1) { %>, <% } %><% }); %>",
" * License(s): <%= pkg.license %>",
" */",
""
].join("\n");
Expand Down Expand Up @@ -77,4 +77,4 @@ gulp.task("server", function() {
servers = createServer(port);
}
open("http://localhost:" + port + "/index.html");
});
});
6 changes: 3 additions & 3 deletions lib/postal.xframe.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/**
* postal.xframe - postal.js/postal.federation plugin for federating instances of postal.js across iframe/window boundaries.
* Author: Jim Cowart (http://freshbrewedcode.com/jimcowart)
* Version: v0.3.2
* Author: Jim Cowart (http://ifandelse.com)
* Version: v0.4.0
* Url: http://github.com/postaljs/postal.xframe
* License(s): MIT, GPL
* License(s): (MIT OR GPL-2.0)
*/
(function (root, factory) {
if (typeof define === "function" && define.amd) {
Expand Down
6 changes: 3 additions & 3 deletions lib/postal.xframe.min.js

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

27 changes: 13 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "postal.xframe",
"description": "postal.js/postal.federation plugin for federating instances of postal.js across iframe/window boundaries.",
"version": "0.3.2",
"version": "0.4.0",
"homepage": "http://github.com/postaljs/postal.xframe",
"repository": {
"type": "git",
"url": "git://github.com/postaljs/postal.xframe.git"
},
"author": "Jim Cowart (http://freshbrewedcode.com/jimcowart)",
"author": "Jim Cowart (http://ifandelse.com)",
"contributors": [
{
"name": "Jim Cowart",
"email": "jim@ifandelse.com",
"url": "http://freshbrewedcode.com/jimcowart"
"url": "http://ifandelse.com"
},
{
"name": "Jose Badeau",
Expand All @@ -33,6 +33,14 @@
"name": "Robert Bar",
"email": "robert@rbsoftware.pl",
"url": "http://rbsoftware.pl"
},
{
"name": "Doug Neiner",
"url": "http://dougneiner.com"
},
{
"name": "Ryan Niemeyer",
"url": "http://knockmeout.net"
}
],
"keywords": [
Expand Down Expand Up @@ -61,7 +69,7 @@
"bootstrap": "^3.3.5",
"expect.js": "~0.2.0",
"express": "~3.4.7",
"gulp": "~3.8.10",
"gulp": "^3.9.0",
"gulp-beautify": "~1.0.3",
"gulp-header": "~1.0.2",
"gulp-hint-not": "~0.0.3",
Expand All @@ -75,16 +83,7 @@
"open": "~0.0.4",
"postal.request-response": "^0.3.1"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
},
{
"type": "GPL",
"url": "http://opensource.org/licenses/GPL-2.0"
}
],
"license": "(MIT OR GPL-2.0)",
"scripts": {
"build": "gulp",
"start": "gulp server"
Expand Down

0 comments on commit 12bc1a9

Please sign in to comment.