Skip to content

Commit

Permalink
Bumped to v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rmm5t committed Sep 16, 2016
1 parent f00524c commit a84ea3f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ end

desc "Construct a new release package, and optionally tag the repository"
task :release => [:rewrite_docs, :rewrite_bower, :commit, :repackage] do
sh("git tag 'v#{package.version}'")
sh("git tag -s 'v#{package.version}' -m 'Version #{package.version}'")
puts("\n *** Don't forget to push the zip file to S3 ***")
puts("\n *** Don't forget to `rake publish` ***")
end
Expand All @@ -54,7 +54,7 @@ task :rewrite_bower => :version do
bower = {
"name" => "jquery-flexselect",
"version" => package.version,
"main" => "jquery.flexselect.js",
"main" => ["jquery.flexselect.js", "flexselect.css"],
"ignore" => [ "test", "vendor" ],
"dependencies" => { "jquery" => ">=1.4" }
}
Expand Down
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery-flexselect",
"version": "0.8.0",
"version": "0.9.0",
"main": [
"jquery.flexselect.js",
"flexselect.css"
Expand All @@ -12,4 +12,4 @@
"dependencies": {
"jquery": ">=1.4"
}
}
}
2 changes: 1 addition & 1 deletion flexselect.jquery.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flexselect",
"version": "0.8.0",
"version": "0.9.0",
"title": "jQuery Flexselect",
"author": {
"name": "Ryan McGeary",
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
};

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

var president = $("select#president");
Expand Down

0 comments on commit a84ea3f

Please sign in to comment.