Skip to content

Commit

Permalink
SMBServer v1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
TalAloni committed Nov 28, 2020
1 parent c55c543 commit 7599670
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 9 deletions.
4 changes: 2 additions & 2 deletions SMBLibrary.Win32/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
2 changes: 1 addition & 1 deletion SMBLibrary.Win32/SMBLibrary.Win32.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AssemblyName>SMBLibrary.Win32</AssemblyName>
<Version>1.4.2</Version>
<Version>1.4.3</Version>
<RootNamespace>SMBLibrary.Win32</RootNamespace>
<Authors>Tal Aloni</Authors>
<PackageDescription>Windows specific extensions for SMBLibrary</PackageDescription>
Expand Down
4 changes: 2 additions & 2 deletions SMBLibrary/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
8 changes: 8 additions & 0 deletions SMBLibrary/RevisionHistory.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
4 changes: 2 additions & 2 deletions SMBLibrary/SMBLibrary.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AssemblyName>SMBLibrary</AssemblyName>
<Version>1.4.2</Version>
<Version>1.4.3</Version>
<RootNamespace>SMBLibrary</RootNamespace>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Authors>Tal Aloni</Authors>
<PackageDescription>SMBLibrary is an open-source C# SMB 1.0/CIFS, SMB 2.0 and SMB 2.1 server and client implementation</PackageDescription>
<PackageDescription>SMBLibrary is an open-source C# SMB 1.0/CIFS, SMB 2.0, SMB 2.1 and SMB 3.0 server and client implementation</PackageDescription>
<PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/TalAloni/SMBLibrary</PackageProjectUrl>
<RepositoryUrl>https://github.com/TalAloni/SMBLibrary</RepositoryUrl>
Expand Down
4 changes: 2 additions & 2 deletions SMBServer/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]

0 comments on commit 7599670

Please sign in to comment.