Skip to content
This repository has been archived by the owner on Jun 21, 2018. It is now read-only.

Commit

Permalink
release 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
timcharper committed Mar 29, 2010
1 parent a59f479 commit 8b53533
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -5,7 +5,7 @@ begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "calendar_date_select"
gemspec.version = File.read("VERSION")
gemspec.version = File.read("VERSION").strip
gemspec.summary = "Calendar date picker for rails"
gemspec.description = "Calendar date picker for rails"
gemspec.email = ""
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
1.6
1.6.1
6 changes: 3 additions & 3 deletions calendar_date_select.gemspec
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{calendar_date_select}
s.version = "1.6"
s.version = "1.6.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Shih-gian Lee", "Enrique Garcia Cota (kikito)", "Tim Charper", "Lars E. Hoeg"]
s.date = %q{2010-03-25}
s.date = %q{2010-03-29}
s.description = %q{Calendar date picker for rails}
s.email = %q{}
s.extra_rdoc_files = [
Expand Down Expand Up @@ -74,7 +74,7 @@ Gem::Specification.new do |s|
s.homepage = %q{http://github.com/timcharper/calendar_date_select}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.rubygems_version = %q{1.3.6}
s.summary = %q{Calendar date picker for rails}
s.test_files = [
"spec/calendar_date_select/calendar_date_select_spec.rb",
Expand Down
4 changes: 2 additions & 2 deletions lib/calendar_date_select/calendar_date_select.rb
@@ -1,6 +1,6 @@
module CalendarDateSelect
VERSION = '1.6
'
VERSION = '1.6.1'

FORMATS = {
:natural => {
:date => "%B %d, %Y",
Expand Down
@@ -1,4 +1,4 @@
// CalendarDateSelect version 1.6 - a prototype based date picker
// CalendarDateSelect version 1.6.1 - a prototype based date picker
// Questions, comments, bugs? - see the project page: http://code.google.com/p/calendardateselect
if (typeof Prototype == 'undefined') alert("CalendarDateSelect Error: Prototype could not be found. Please make sure that your application's layout includes prototype.js (.g. <%= javascript_include_tag :defaults %>) *before* it includes calendar_date_select.js (.g. <%= calendar_date_select_includes %>).");
if (Prototype.Version < "1.6") alert("Prototype 1.6.0 is required. If using earlier version of prototype, please use calendar_date_select version 1.8.3");
Expand Down

0 comments on commit 8b53533

Please sign in to comment.