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

Commit

Permalink
v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
blackwinter committed Mar 9, 2011
1 parent 346ddaa commit 8053d40
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,5 +1,10 @@
= Revision history for jekyll-localization = Revision history for jekyll-localization


== 0.1.0 [2011-03-09]

* Added Jekyll::Localization::HUMAN_LANGUAGES and corresponding helper.
* Added helpers to deal with other languages than the current one.

== 0.0.9 [2010-12-21] == 0.0.9 [2010-12-21]


* Set YAML data too when alternative language content will be used. * Set YAML data too when alternative language content will be used.
Expand Down
2 changes: 1 addition & 1 deletion README
Expand Up @@ -2,7 +2,7 @@


== VERSION == VERSION


This documentation refers to jekyll-localization version 0.0.9 This documentation refers to jekyll-localization version 0.1.0




== DESCRIPTION == DESCRIPTION
Expand Down
13 changes: 6 additions & 7 deletions jekyll-localization.gemspec
Expand Up @@ -2,23 +2,22 @@


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{jekyll-localization} s.name = %q{jekyll-localization}
s.version = "0.0.9" s.version = "0.1.0"


s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jens Wille", "Arne Eilermann"] s.authors = ["Jens Wille", "Arne Eilermann"]
s.date = %q{2010-12-21} s.date = %q{2011-03-09}
s.description = %q{Jekyll plugin that adds localization features to the rendering engine.} s.description = %q{Jekyll plugin that adds localization features to the rendering engine.}
s.email = ["jens.wille@uni-koeln.de", "eilermann@lavabit.com"] s.email = ["jens.wille@uni-koeln.de", "eilermann@lavabit.com"]
s.extra_rdoc_files = ["COPYING", "ChangeLog", "README"] s.extra_rdoc_files = ["README", "COPYING", "ChangeLog"]
s.files = ["lib/jekyll/localization/version.rb", "lib/jekyll/localization.rb", "Rakefile", "COPYING", "ChangeLog", "README"] s.files = ["lib/jekyll/localization.rb", "lib/jekyll/localization/version.rb", "README", "ChangeLog", "Rakefile", "COPYING"]
s.homepage = %q{http://github.com/blackwinter/jekyll-localization} s.homepage = %q{http://github.com/blackwinter/jekyll-localization}
s.rdoc_options = ["--title", "jekyll-localization Application documentation", "--main", "README", "--line-numbers", "--inline-source", "--all", "--charset", "UTF-8"] s.rdoc_options = ["--charset", "UTF-8", "--title", "jekyll-localization Application documentation (v0.1.0)", "--main", "README", "--all", "--line-numbers"]
s.require_paths = ["lib"] s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7} s.rubygems_version = %q{1.6.2}
s.summary = %q{Jekyll plugin that adds localization features to the rendering engine.} s.summary = %q{Jekyll plugin that adds localization features to the rendering engine.}


if s.respond_to? :specification_version then if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3 s.specification_version = 3


if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
Expand Down
4 changes: 2 additions & 2 deletions lib/jekyll/localization/version.rb
Expand Up @@ -5,8 +5,8 @@ module Localization
module Version module Version


MAJOR = 0 MAJOR = 0
MINOR = 0 MINOR = 1
TINY = 9 TINY = 0


class << self class << self


Expand Down

0 comments on commit 8053d40

Please sign in to comment.