Skip to content
This repository has been archived by the owner on Feb 16, 2021. It is now read-only.

Commit

Permalink
v2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesMGreene committed Jun 25, 2014
1 parent 528e510 commit dc1dc99
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zeroclipboard",
"description": "The ZeroClipboard library provides an easy way to copy text to the clipboard using an invisible Adobe Flash movie and a JavaScript interface.",
"version": "2.1.2",
"version": "2.1.3",
"main": ["./dist/ZeroClipboard.js", "./dist/ZeroClipboard.swf"],
"keywords": ["flash","clipboard","copy","cut","paste","zclip","clip","clippy"],
"license": "https://github.com/zeroclipboard/zeroclipboard/blob/master/LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zeroclipboard/zeroclipboard",
"description": "The ZeroClipboard library provides an easy way to copy text to the clipboard using an invisible Adobe Flash movie and a JavaScript interface.",
"version": "2.1.2",
"version": "2.1.3",
"type": "library",
"keywords": ["flash","clipboard","copy","cut","paste","zclip","clip","clippy"],
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions dist/ZeroClipboard.Core.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Copyright (c) 2014 Jon Rohan, James M. Greene
* Licensed MIT
* http://zeroclipboard.org/
* v2.1.2
* v2.1.3
*/
(function(window, undefined) {
"use strict";
Expand Down Expand Up @@ -1590,7 +1590,7 @@
* @property {string}
*/
_defineProperty(ZeroClipboard, "version", {
value: "2.1.2",
value: "2.1.3",
writable: false,
configurable: true,
enumerable: true
Expand Down
4 changes: 2 additions & 2 deletions dist/ZeroClipboard.Core.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ZeroClipboard.Core.min.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/ZeroClipboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Copyright (c) 2014 Jon Rohan, James M. Greene
* Licensed MIT
* http://zeroclipboard.org/
* v2.1.2
* v2.1.3
*/
(function(window, undefined) {
"use strict";
Expand Down Expand Up @@ -1590,7 +1590,7 @@
* @property {string}
*/
_defineProperty(ZeroClipboard, "version", {
value: "2.1.2",
value: "2.1.3",
writable: false,
configurable: true,
enumerable: true
Expand Down
4 changes: 2 additions & 2 deletions dist/ZeroClipboard.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ZeroClipboard.min.map

Large diffs are not rendered by default.

Binary file modified dist/ZeroClipboard.swf
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zeroclipboard",
"title": "ZeroClipboard",
"version": "2.1.2",
"version": "2.1.3",
"description": "The ZeroClipboard library provides an easy way to copy text to the clipboard using an invisible Adobe Flash movie and a JavaScript interface.",
"keywords": [
"flash",
Expand Down

1 comment on commit dc1dc99

@JamesMGreene
Copy link
Member Author

Choose a reason for hiding this comment

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

@CaptSaltyJack You can't look at a single commit to see all the changes. This is only the commit in which I updated the version number. GitHub offers a pretty sweet interface to easily see all commits between any two "commit-ish" points, including tags. For example, the diff between the v2.1.2 and v2.1.3 tags can be seen via this URL: v2.1.2...v2.1.3

v2.0.0 tag vs. v2.1.3 tag: v2.0.0...v2.1.3
Latest 1.x-master branch vs. v2.0.0 tag: 1.x-master...v2.0.0

This URL structure works for comparing pretty much anything, including across forks.

Please sign in to comment.