Skip to content
This repository was archived by the owner on Jan 26, 2021. It is now read-only.

Commit c3e4ba8

Browse files
committed
Release 0.9.4
1 parent 413b6d5 commit c3e4ba8

File tree

5 files changed

+35
-4
lines changed

5 files changed

+35
-4
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# dirs
2-
/vendor/ruby/*
2+
/vendor
33
/bin/
44
/tmp/
55
/.sass-cache
66
/build
7+
/.bundle
8+
79

810
# tempfiles
911
*[~#]

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.3
1+
0.9.4

config.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def iterate(length, label = "Item", &block)
101101
end
102102

103103
File.open('sortable.jquery.json', 'r+') do |file|
104-
puts file.read.gsub(/("version": "|blob\/)[\d\.]+/, '\1' + VERSION)
104+
file.puts file.read.gsub(/("version": "|blob\/)[\d\.]+/, '\1' + VERSION)
105105
end
106106

107107
# For example, change the Compass output style for deployment

sortable.jquery.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,32 @@
2727
"jquery": ">=1.7"
2828
}
2929
}
30+
{
31+
"name": "sortable",
32+
"title": "jQuery Sortable",
33+
"description": "Enables items in a list (or table etc.) to be sorted horizontally and vertically using the mouse. Supports nested lists and pure drag/drop containers. Does not require jQuery UI.",
34+
"keywords": [
35+
"list",
36+
"sort",
37+
"sortable",
38+
"drag",
39+
"drop"
40+
],
41+
"version": "0.9.4",
42+
"author": {
43+
"name": "Jonas von Andrian"
44+
},
45+
"licenses": [
46+
{
47+
"type": "BSD-3",
48+
"url": "https://github.com/johnny/jquery-sortable/blob/0.9.4/LICENSE"
49+
}
50+
],
51+
"bugs": "https://github.com/johnny/jquery-sortable/issues",
52+
"homepage": "http://johnny.github.com/jquery-sortable/",
53+
"docs": "http://johnny.github.com/jquery-sortable/",
54+
"download": "http://johnny.github.com/jquery-sortable/",
55+
"dependencies": {
56+
"jquery": ">=1.7"
57+
}
58+
}

source/js/jquery-sortable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ===================================================
2-
* jquery-sortable.js v0.9.3
2+
* jquery-sortable.js v0.9.4
33
* http://johnny.github.com/jquery-sortable/
44
* ===================================================
55
* Copyright (c) 2012 Jonas von Andrian

0 commit comments

Comments
 (0)