Skip to content

Commit

Permalink
Upgrading version to 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
enyo committed Feb 4, 2013
1 parent 70d0662 commit 8d158c8
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dropzone",
"repo": "enyo/dropzone",
"version": "1.3.1-dev",
"version": "1.3.1",
"description": "Handles drag and drop of files for you.",
"scripts": [ "index.js", "lib/dropzone.js" ],
"styles": [ "downloads/css/basic.css" ],
Expand Down
2 changes: 1 addition & 1 deletion downloads/dropzone-amd-module.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ Emitter.prototype.hasListeners = function(event){

__extends(Dropzone, _super);

Dropzone.prototype.version = "1.3.1-dev";
Dropzone.prototype.version = "1.3.1";

/*
This is a list of all available events you can register on a dropzone object.
Expand Down
2 changes: 1 addition & 1 deletion downloads/dropzone.js
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ require.register("dropzone/lib/dropzone.js", function(exports, require, module){

__extends(Dropzone, _super);

Dropzone.prototype.version = "1.3.1-dev";
Dropzone.prototype.version = "1.3.1";

/*
This is a list of all available events you can register on a dropzone object.
Expand Down
2 changes: 1 addition & 1 deletion lib/dropzone.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,6 +1,6 @@
{
"name": "dropzone",
"version": "1.3.1-dev",
"version": "1.3.1",
"description": "Handles drag and drop of files for you.",
"keywords": [ "dragndrop", "drag and drop", "file upload", "upload" ],
"homepage": "http://www.dropzonejs.com",
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Dropzone.js Version 1.3.1-dev
# Dropzone.js Version 1.3.1

Dropzone.js is a light weight JavaScript library for jQuery that turns an HTML element into a dropzone.
This means that a user can drag and drop a file onto it, and the file gets uploaded to the server via AJAX.
Expand Down
2 changes: 1 addition & 1 deletion src/dropzone.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Em = Emitter ? require "emitter" # Can't be the same name because it will lead t

class Dropzone extends Em

version: "1.3.1-dev"
version: "1.3.1"

###
This is a list of all available events you can register on a dropzone object.
Expand Down

0 comments on commit 8d158c8

Please sign in to comment.