Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Release v1.0.0.rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
kossnocorp committed Jan 31, 2013
1 parent a608907 commit d292e2e
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ $.setReadyEvent('custom_loading_event');

This project uses [Semantic Versioning](http://semver.org/) for release numbering.

## 1.0.0-rc2 (January 31, 2013)

* Fix problem with 3rd-party libraries [#12](https://github.com/kossnocorp/jquery.turbolinks/issues/12), [#15](https://github.com/kossnocorp/jquery.turbolinks/issues/15)
* Reopen [#8](https://github.com/kossnocorp/jquery.turbolinks/issues/8)

## 1.0.0-rc1 (November 28, 2012)

* Set $.isReady to false after `page:fetch` [#6](https://github.com/kossnocorp/jquery.turbolinks/issues/6);
Expand Down
5 changes: 3 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace :release do
task :build_gem do
system 'gem build jquery-turbolinks.gemspec'
end

task gem: :build_gem do
system "gem push jquery-turbolinks-#{JqueryTurbolinks::VERSION}.gem"
end
Expand All @@ -26,7 +26,8 @@ namespace :js do
command = [
'./node_modules/coffee-script/bin/coffee',
'--compile',
'--output ./vendor/assets/javascripts/ ./src/jquery.turbolinks.coffee'
'--output ./vendor/assets/javascripts/',
'./src/jquery.turbolinks.coffee'
]
system command.join(' ')
end
Expand Down
2 changes: 1 addition & 1 deletion lib/jquery-turbolinks/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module JqueryTurbolinks
VERSION = '1.0.0.rc1'
VERSION = '1.0.0.rc2'
end
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery.turbolinks",
"version": "1.0.0-rc1",
"version": "1.0.0-rc2",
"author": "Sasha Koss <[email protected]>",
"description": "jQuery plugin for drop-in fix binded events problem caused by Turbolinks",

Expand Down
2 changes: 1 addition & 1 deletion src/jquery.turbolinks.coffee
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
###
jquery.turbolinks.js ~ v1.0.0-rc1 ~ https://github.com/kossnocorp/jquery.turbolinks
jquery.turbolinks.js ~ v1.0.0-rc2 ~ https://github.com/kossnocorp/jquery.turbolinks
jQuery plugin for drop-in fix binded events problem caused by Turbolinks
Expand Down
7 changes: 3 additions & 4 deletions vendor/assets/javascripts/jquery.turbolinks.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d292e2e

Please sign in to comment.