diff --git a/ChangeLog.txt b/ChangeLog.txt
index 1b628284c7c6..8e6701c15656 100644
--- a/ChangeLog.txt
+++ b/ChangeLog.txt
@@ -1,3 +1,7 @@
+2012.06.02 Version 0.3.0
+ * Added 1.7 Storage Support
+ * Added Javadocs for com.microsoft.windowsazure.services.table
+
2012.05.02 Version 0.2.2
* Added Javadoc comments to Azure Blob Service Layer
* Fixed a URL encoding issue in Table Client Layer
diff --git a/README.md b/README.md
index 76a899e45b20..07c59ee7dee6 100644
--- a/README.md
+++ b/README.md
@@ -41,7 +41,7 @@ within your project you can also have them installed by the Java package manager
com.microsoft.windowsazure
microsoft-windowsazure-api
- 0.1.0
+ 0.3.0
##Minimum Requirements
diff --git a/microsoft-azure-api/pom.xml b/microsoft-azure-api/pom.xml
index b9cb8f3ad694..7f328aed9576 100644
--- a/microsoft-azure-api/pom.xml
+++ b/microsoft-azure-api/pom.xml
@@ -1,9 +1,23 @@
+
4.0.0
com.microsoft.windowsazure
microsoft-windowsazure-api
- 0.2.2
+ 0.3.0
jar
Microsoft Windows Azure Client API
diff --git a/microsoft-azure-api/src/main/java/com/microsoft/windowsazure/services/core/utils/CommaStringBuilder.java b/microsoft-azure-api/src/main/java/com/microsoft/windowsazure/services/core/utils/CommaStringBuilder.java
index 3623028e5ef1..ac8b9f45c519 100644
--- a/microsoft-azure-api/src/main/java/com/microsoft/windowsazure/services/core/utils/CommaStringBuilder.java
+++ b/microsoft-azure-api/src/main/java/com/microsoft/windowsazure/services/core/utils/CommaStringBuilder.java
@@ -1,3 +1,17 @@
+/**
+ * Copyright 2012 Microsoft Corporation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
package com.microsoft.windowsazure.services.core.utils;
import java.util.List;