Please review pull request #34: Fix VERSION contant in lib/hiera.rb opened by (stahnma)
Description:
When the gem is packaged up, the VERSION field is created based on the
last signed tag from this git repository; however after that change
happened and the gem was shipped, I foolishly forgot to commit that
change so the lib/hiera.rb file thought it was still at 0.2.1 even
though it was really at 0.3.0. This fixes my mistake.
Signed-off-by: Michael Stahnke [email protected]
- Opened: Thu Feb 16 18:09:01 UTC 2012
- Based on: puppetlabs:master (0f076b2816eb8f1dfdcb58a6792060f86a52b3c3)
- Requested merge: stahnma:fix_hiera_version (ddd5b66a3ca612256cd5ff5328ff4c873b2b2c38)
Diff follows:
diff --git a/lib/hiera.rb b/lib/hiera.rb index 9438756..2afa589 100644 --- a/lib/hiera.rb +++ b/lib/hiera.rb @@ -2,7 +2,7 @@ require 'yaml' class Hiera - VERSION = "0.2.1" + VERSION = "0.3.0" autoload :Config, "hiera/config" autoload :Backend, "hiera/backend"
-- You received this message because you are subscribed to the Google Groups "Puppet Developers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to [email protected].
For more options, visit this group at http://groups.google.com/group/puppet-dev?hl=en.
