calendar_date_select 1.16 → 1.16.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,7 @@
1
+ == Version 1.16.1
2
+
3
+ * 1.16 was a lemon release. Sorry! Deploy script had an error and messed up the code on the way out.
4
+
1
5
  == Version 1.16
2
6
 
3
7
  * Ability to specify a default time/date if no time/date is selected in the target form element. (Shih-gian Lee)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.16
1
+ 1.16.1
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{calendar_date_select}
8
- s.version = "1.16"
8
+ s.version = "1.16.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Shih-gian Lee", "Enrique Garcia Cota (kikito)", "Tim Charper", "Lars E. Hoeg"]
@@ -1,5 +1,5 @@
1
1
  module CalendarDateSelect
2
- VERSION = '1.16'
2
+ VERSION = '1.16.1'
3
3
 
4
4
  FORMATS = {
5
5
  :natural => {
@@ -1,4 +1,4 @@
1
- // CalendarDateSelect version 1.16 - a prototype based date picker
1
+ // CalendarDateSelect version 1.16.1 - a prototype based date picker
2
2
  // Questions, comments, bugs? - see the project page: http://code.google.com/p/calendardateselect
3
3
  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 %>).");
4
4
  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");
metadata CHANGED
@@ -5,7 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 16
8
- version: "1.16"
8
+ - 1
9
+ version: 1.16.1
9
10
  platform: ruby
10
11
  authors:
11
12
  - Shih-gian Lee