templebars 0.1.1 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md CHANGED
@@ -68,6 +68,10 @@ To use Templebars with, for example, Ember.js, add the following to your
68
68
  config.templebars_template_global = "Ember.TEMPLATES"
69
69
  ```
70
70
 
71
+ # Version History
72
+
73
+ * **0.2.0** Update Handlebars to 1.0.rc.1.
74
+
71
75
  *This gem is maintained by [Stovepipe Studios][stovepipe].*
72
76
 
73
77
  [stovepipe]: http://www.stovepipestudios.com
@@ -1,6 +1,6 @@
1
1
  module Templebars
2
2
  module Rails
3
- VERSION = "0.1.1"
4
- HANDLEBARSJS_VERSION = "1.0.beta.6"
3
+ VERSION = "0.2.0"
4
+ HANDLEBARSJS_VERSION = "1.0.rc.1"
5
5
  end
6
6
  end