Version bump

master v1.0.2
Alex Dunae 2011-05-13 14:17:53 -07:00
parent ea96ff92ee
commit ce5a7d09d2
4 changed files with 141 additions and 132 deletions

View File

@ -1,5 +1,8 @@
= Ruby Holidays Gem CHANGELOG
== 1.0.2
* Add `orthodox_easter` method and Greek holiday definitions (thanks https://github.com/ddimitriadis)
== 1.0.0
* Support calculating mday from negative weeks other than -1 (thanks http://github.com/bjeanes)
* Use class method to check leap years and fixed bug in Date.calculate_mday

View File

@ -68,6 +68,6 @@ Lookup Canada Day in different regions.
* Docs: http://rdoc.info/github/alexdunae/holidays/master/frames
* Contributors: https://github.com/alexdunae/holidays/contributors
Started by Alex Dunae (dunae.ca, e-mail 'code' at the same domain), 2007-10.
Started by Alex Dunae (dunae.ca, e-mail 'code' at the same domain), 2007-11.
Made on Vancouver Island.

View File

@ -1,15 +1,15 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in rakefile.rb, and run 'rake gemspec'
# Instead, edit Jeweler::Tasks in rakefile.rb, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{holidays}
s.version = "1.0.1"
s.version = "1.0.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Alex Dunae", "Rowan Crawford"]
s.date = %q{2011-04-29}
s.date = %q{2011-05-13}
s.description = %q{A collection of Ruby methods to deal with statutory and other holidays. You deserve a holiday!}
s.email = %q{code@dunae.ca}
s.extra_rdoc_files = [
@ -17,6 +17,7 @@ Gem::Specification.new do |s|
"README.rdoc"
]
s.files = [
".gitignore",
"CHANGELOG",
"LICENSE",
"README.rdoc",
@ -29,6 +30,7 @@ Gem::Specification.new do |s|
"data/cz.yaml",
"data/de.yaml",
"data/dk.yaml",
"data/el.yaml",
"data/es.yaml",
"data/fi.yaml",
"data/fr.yaml",
@ -59,6 +61,7 @@ Gem::Specification.new do |s|
"lib/holidays/cz.rb",
"lib/holidays/de.rb",
"lib/holidays/dk.rb",
"lib/holidays/el.rb",
"lib/holidays/es.rb",
"lib/holidays/europe.rb",
"lib/holidays/fi.rb",
@ -88,6 +91,7 @@ Gem::Specification.new do |s|
"test/defs/test_defs_cz.rb",
"test/defs/test_defs_de.rb",
"test/defs/test_defs_dk.rb",
"test/defs/test_defs_el.rb",
"test/defs/test_defs_es.rb",
"test/defs/test_defs_europe.rb",
"test/defs/test_defs_fi.rb",
@ -115,6 +119,7 @@ Gem::Specification.new do |s|
"test/test_multiple_regions.rb"
]
s.homepage = %q{https://github.com/alexdunae/holidays}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{A collection of Ruby methods to deal with statutory and other holidays. You deserve a holiday!}
@ -125,6 +130,7 @@ Gem::Specification.new do |s|
"test/defs/test_defs_cz.rb",
"test/defs/test_defs_de.rb",
"test/defs/test_defs_dk.rb",
"test/defs/test_defs_el.rb",
"test/defs/test_defs_es.rb",
"test/defs/test_defs_europe.rb",
"test/defs/test_defs_fi.rb",

View File

@ -43,7 +43,7 @@ module Holidays
# Exception thrown when an unknown region is requested.
class UnknownRegionError < ArgumentError; end
VERSION = '1.0.1'
VERSION = '1.0.2'
@@regions = []
@@holidays_by_month = {}