diff --git a/CHANGELOG.md b/CHANGELOG.md index f45d787..504cc60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ -# EDGE +## EDGE + +## 0.3.0 2015-02-03 * Move all files under `opal/jquery` require namespace, rather than current `opal-jquery` require paths. @@ -23,7 +25,7 @@ * Add Promise support to `HTTP` get/post/put/delete methods. Also remove `HTTP#callback` and `#errback` methods. -# 0.2.0 - March 12, 2013 +## 0.2.0 2014-03-12 * Add `Document.body` and `Document.head` shortcut to element instances. @@ -37,18 +39,18 @@ * Expose `#detach` method on `Element`. -# 0.1.2 - December 1, 2013 +## 0.1.2 2013-12-01 * Support setting html content through `Element#html()`. * Add `Element` methods: `#get`, `#attr` and `#prop` by aliasing them to jquery implementations. -# 0.1.1 - November 11, 2013 +## 0.1.1 2013-11-03 * Require `native` from stdlib for `HTTP` to use. -# 0.1.0 - November 3, 2013 +## 0.1.0 2013-11-03 * Add `Window` and `$window` alias. @@ -56,7 +58,7 @@ * `Event` is now a wrapper around native event from dom listeners. -# 0.0.9 - June 15, 2013 +## 0.0.9 2013-06-15 * Revert earlier commit, and use `$document` as reference to jquery wrapped `document`. @@ -65,15 +67,15 @@ * Depreceate $document.title and $document.title=. -# 0.0.8 - May 2, 2013 +## 0.0.8 2013-05-02 * Depreceate Document in favor of $document global. * Add HTTP.delete() for creating DELETE request. -# 0.0.7 - February 20, 2013 +## 0.0.7 2013-02-20 -* Add Element#method_missing which forwards missing calls to try and call +* Add Element#method\_missing which forwards missing calls to try and call method as a native jquery function/plugin. * Depreceate Document finder methods (Document.find, Document[]). The finder diff --git a/lib/opal/jquery/version.rb b/lib/opal/jquery/version.rb index b524a4b..78cbd42 100644 --- a/lib/opal/jquery/version.rb +++ b/lib/opal/jquery/version.rb @@ -1,5 +1,5 @@ module Opal module JQuery - VERSION = '0.3.0.beta2' + VERSION = '0.3.0' end end