Make ready for 0.3.0
diff --git a/README.md b/README.md
index e79569f..fc5e9c2 100644
--- a/README.md
+++ b/README.md
@@ -37,6 +37,8 @@
 
 - [X] Service discovery
 - [X] Automatic reconnect
+- [X] TLS connections
+- [X] JSON Web Token Authentication
 - [X] Producer send with custom metadata
 - [X] Producer send with event time, sequence id and delayed message delivery
 - [X] Producer send with key and ordering key
@@ -65,8 +67,6 @@
 ### Future
 
 * Batching
-* TLS connections
-* JSON Web Token Authentication
 
 ### If requested by the community
 
diff --git a/src/DotPulsar/DotPulsar.csproj b/src/DotPulsar/DotPulsar.csproj
index 2759b9e..9e0c809 100644
--- a/src/DotPulsar/DotPulsar.csproj
+++ b/src/DotPulsar/DotPulsar.csproj
@@ -2,11 +2,11 @@
 
   <PropertyGroup>
     <TargetFramework>netcoreapp2.2</TargetFramework>
-    <Version>0.2.0</Version>
+    <Version>0.3.0</Version>
     <AssemblyVersion>$(Version)</AssemblyVersion>
     <FileVersion>$(Version)</FileVersion>
     <Title>DotPulsar</Title>
-    <PackageReleaseNotes>Alpha release - Support compacted topics and fixed service discovery bug</PackageReleaseNotes>
+    <PackageReleaseNotes>Beta release - TLS connections and JSON Web Token authentication</PackageReleaseNotes>
     <PackageTags>Apache;Pulsar</PackageTags>
     <RepositoryType>git</RepositoryType>
     <RepositoryUrl>https://github.com/danske-commodities/dotpulsar</RepositoryUrl>
diff --git a/src/DotPulsar/SubscriptionType.cs b/src/DotPulsar/SubscriptionType.cs
index 4a5944f..d8a7132 100644
--- a/src/DotPulsar/SubscriptionType.cs
+++ b/src/DotPulsar/SubscriptionType.cs
@@ -5,6 +5,6 @@
         Exclusive = 0,
         Shared = 1,
         Failover = 2,
-        KeyShared = 3
+        //KeyShared = 3 Disabled. Needs protocol version update and testing
     }
 }