Merge branch 'dev'
diff --git a/CHANGELOG.md b/RELEASENOTES.md
similarity index 68%
rename from CHANGELOG.md
rename to RELEASENOTES.md
index 6195996..fd813a7 100644
--- a/CHANGELOG.md
+++ b/RELEASENOTES.md
@@ -20,4 +20,11 @@
 -->
 # Release Notes
 
-
+### 0.2.2 (Sept 25, 2013)
+* CB-4889 bumping&resetting version
+* [windows8] commandProxy was moved
+* CB-4889 renaming reference in Notification.cs
+* CB-4889 renaming org.apache.cordova.core.dialogs to org.apache.cordova.dialogs
+* Rename CHANGELOG.md -> RELEASENOTES.md
+* [CB-4592] [Blackberry10] Added beep support
+* [CB-4752] Incremented plugin version on dev branch.
diff --git a/plugin.xml b/plugin.xml
index 3d47847..2bdbb3f 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
 <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
-           id="org.apache.cordova.core.dialogs"
-      version="0.2.0">
+           id="org.apache.cordova.dialogs"
+      version="0.2.2">
 
     <name>Notification</name>
     <description>Cordova Notification Plugin</description>
diff --git a/src/windows8/NotificationProxy.js b/src/windows8/NotificationProxy.js
index 8ede490..b171064 100644
--- a/src/windows8/NotificationProxy.js
+++ b/src/windows8/NotificationProxy.js
@@ -114,4 +114,4 @@
     }
 };
 
-require("cordova/commandProxy").add("Notification",module.exports);
\ No newline at end of file
+require("cordova/windows8/commandProxy").add("Notification",module.exports);
diff --git a/src/wp/Notification.cs b/src/wp/Notification.cs
index 339978a..1c0c63b 100644
--- a/src/wp/Notification.cs
+++ b/src/wp/Notification.cs
@@ -252,7 +252,7 @@
             string[] args = JSON.JsonHelper.Deserialize<string[]>(options);
             int times = int.Parse(args[0]);
 
-            string resourcePath = BaseCommand.GetBaseURL() + "Plugins/org.apache.cordova.core.dialogs/notification-beep.wav";
+            string resourcePath = BaseCommand.GetBaseURL() + "Plugins/org.apache.cordova.dialogs/notification-beep.wav";
 
             StreamResourceInfo sri = Application.GetResourceStream(new Uri(resourcePath, UriKind.Relative));