Skip to content

Commit a84ea3f

Browse files
committed
Bumped to v0.9.0
1 parent f00524c commit a84ea3f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ end
3737

3838
desc "Construct a new release package, and optionally tag the repository"
3939
task :release => [:rewrite_docs, :rewrite_bower, :commit, :repackage] do
40-
sh("git tag 'v#{package.version}'")
40+
sh("git tag -s 'v#{package.version}' -m 'Version #{package.version}'")
4141
puts("\n *** Don't forget to push the zip file to S3 ***")
4242
puts("\n *** Don't forget to `rake publish` ***")
4343
end
@@ -54,7 +54,7 @@ task :rewrite_bower => :version do
5454
bower = {
5555
"name" => "jquery-flexselect",
5656
"version" => package.version,
57-
"main" => "jquery.flexselect.js",
57+
"main" => ["jquery.flexselect.js", "flexselect.css"],
5858
"ignore" => [ "test", "vendor" ],
5959
"dependencies" => { "jquery" => ">=1.4" }
6060
}

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-flexselect",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"main": [
55
"jquery.flexselect.js",
66
"flexselect.css"
@@ -12,4 +12,4 @@
1212
"dependencies": {
1313
"jquery": ">=1.4"
1414
}
15-
}
15+
}

flexselect.jquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "flexselect",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"title": "jQuery Flexselect",
55
"author": {
66
"name": "Ryan McGeary",

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
};
1818

1919
$(document).ready(function() {
20-
download_url = "http://jquery-flexselect.s3.amazonaws.com/jquery.flexselect-0.8.0.zip";
20+
download_url = "http://jquery-flexselect.s3.amazonaws.com/jquery.flexselect-0.9.0.zip";
2121
$("a.download").attr("href", download_url);
2222

2323
var president = $("select#president");

0 commit comments

Comments
 (0)