Skip to content

Commit

Permalink
Tag the v1.2.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasbynens committed Feb 17, 2014
1 parent d9d9503 commit 4bbb548
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "punycode",
"version": "1.2.3",
"version": "1.2.4",
"main": "punycode.js",
"ignore": [
"coverage",
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "punycode",
"version": "1.2.3",
"version": "1.2.4",
"description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.",
"repo": "bestiejs/punycode.js",
"license": "MIT/GPL",
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "punycode",
"version": "1.2.3",
"version": "1.2.4",
"description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.",
"homepage": "http://mths.be/punycode",
"main": "punycode.js",
Expand Down Expand Up @@ -61,8 +61,8 @@
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-uglify": "~0.2.2",
"grunt-shell": "~0.2.2",
"istanbul": "~0.1.37",
"grunt-shell": "~0.6.4",
"istanbul": "~0.2.4",
"qunit-clib": "~1.3.0",
"qunitjs": "~1.11.0",
"requirejs": "~2.1.6"
Expand Down
6 changes: 3 additions & 3 deletions punycode.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! http://mths.be/punycode v1.2.3 by @mathias */
/*! http://mths.be/punycode v1.2.4 by @mathias */
;(function(root) {

/** Detect free variables */
Expand Down Expand Up @@ -463,7 +463,7 @@
* @memberOf punycode
* @type String
*/
'version': '1.2.3',
'version': '1.2.4',
/**
* An object of methods to convert from JavaScript's internal character
* representation (UCS-2) to Unicode code points, and back.
Expand Down Expand Up @@ -492,7 +492,7 @@
define('punycode', function() {
return punycode;
});
} else if (freeExports && !freeExports.nodeType) {
} else if (freeExports && !freeExports.nodeType) {
if (freeModule) { // in Node.js or RingoJS v0.8.0+
freeModule.exports = punycode;
} else { // in Narwhal or RingoJS v0.7.0-
Expand Down
4 changes: 2 additions & 2 deletions punycode.min.js

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

1 comment on commit 4bbb548

@infograf768
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks.

Please sign in to comment.