diff --git a/SMBLibrary.Win32/Properties/AssemblyInfo.cs b/SMBLibrary.Win32/Properties/AssemblyInfo.cs
index c6164bf7..f03ccb32 100644
--- a/SMBLibrary.Win32/Properties/AssemblyInfo.cs
+++ b/SMBLibrary.Win32/Properties/AssemblyInfo.cs
@@ -31,5 +31,5 @@
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
-[assembly: AssemblyVersion("1.4.2.0")]
-[assembly: AssemblyFileVersion("1.4.2.0")]
+[assembly: AssemblyVersion("1.4.3.0")]
+[assembly: AssemblyFileVersion("1.4.3.0")]
diff --git a/SMBLibrary.Win32/SMBLibrary.Win32.csproj b/SMBLibrary.Win32/SMBLibrary.Win32.csproj
index 8146339b..70387f9b 100644
--- a/SMBLibrary.Win32/SMBLibrary.Win32.csproj
+++ b/SMBLibrary.Win32/SMBLibrary.Win32.csproj
@@ -4,7 +4,7 @@
net20;net40;netstandard2.0
false
SMBLibrary.Win32
- 1.4.2
+ 1.4.3
SMBLibrary.Win32
Tal Aloni
Windows specific extensions for SMBLibrary
diff --git a/SMBLibrary/Properties/AssemblyInfo.cs b/SMBLibrary/Properties/AssemblyInfo.cs
index 602ee343..fa910b44 100644
--- a/SMBLibrary/Properties/AssemblyInfo.cs
+++ b/SMBLibrary/Properties/AssemblyInfo.cs
@@ -31,6 +31,6 @@
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
-[assembly: AssemblyVersion("1.4.2.0")]
-[assembly: AssemblyFileVersion("1.4.2.0")]
+[assembly: AssemblyVersion("1.4.3.0")]
+[assembly: AssemblyFileVersion("1.4.3.0")]
[assembly: InternalsVisibleTo("SMBLibrary.Tests")]
\ No newline at end of file
diff --git a/SMBLibrary/RevisionHistory.txt b/SMBLibrary/RevisionHistory.txt
index 52201d27..eaa368d5 100644
--- a/SMBLibrary/RevisionHistory.txt
+++ b/SMBLibrary/RevisionHistory.txt
@@ -436,3 +436,11 @@ Revision History:
1.4.2 - Server: Bugfix: Buffer was not set to the correct size for SMB2 Large MTU.
Client: Client: SMB1FileStore: Implemented SetFileInformation with FileInformation parameter.
+
+1.4.3 - Client: Bugfix: Reading FindInformationList may have caused infinite loop.
+ Added SMB2TransformHeader implementation.
+ Added logic to calculate SMB 3.x encryption / decryption keys.
+ Added SMB 3.0 message signing logic.
+ SMB2Cryptography: Added logic for SMB 3.0 encryption.
+ Client: Added SMB 3.0 support.
+ Server: Added option to enable SMB 3.0 dialect.
diff --git a/SMBLibrary/SMBLibrary.csproj b/SMBLibrary/SMBLibrary.csproj
index 20308707..724680fd 100644
--- a/SMBLibrary/SMBLibrary.csproj
+++ b/SMBLibrary/SMBLibrary.csproj
@@ -4,11 +4,11 @@
net20;net40;netstandard2.0
false
SMBLibrary
- 1.4.2
+ 1.4.3
SMBLibrary
false
Tal Aloni
- SMBLibrary is an open-source C# SMB 1.0/CIFS, SMB 2.0 and SMB 2.1 server and client implementation
+ SMBLibrary is an open-source C# SMB 1.0/CIFS, SMB 2.0, SMB 2.1 and SMB 3.0 server and client implementation
LGPL-3.0-or-later
https://github.com/TalAloni/SMBLibrary
https://github.com/TalAloni/SMBLibrary
diff --git a/SMBServer/Properties/AssemblyInfo.cs b/SMBServer/Properties/AssemblyInfo.cs
index fc122493..cd31fa23 100644
--- a/SMBServer/Properties/AssemblyInfo.cs
+++ b/SMBServer/Properties/AssemblyInfo.cs
@@ -29,5 +29,5 @@
// Build Number
// Revision
//
-[assembly: AssemblyVersion("1.4.2.0")]
-[assembly: AssemblyFileVersion("1.4.2.0")]
+[assembly: AssemblyVersion("1.4.3.0")]
+[assembly: AssemblyFileVersion("1.4.3.0")]