Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
cosullivan committed Dec 22, 2023
1 parent 9f72c91 commit 1975ee2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
3 changes: 1 addition & 2 deletions Examples/SampleApp/Examples/SessionTracingExample.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using SmtpServer;
using SmtpServer.ComponentModel;
using SmtpServer.Net;
using SmtpServer.Protocol;
using SmtpServer.Tracing;

namespace SampleApp.Examples
Expand All @@ -31,7 +30,7 @@ public static void Run()

var serverTask = server.StartAsync(_cancellationTokenSource.Token);

SampleMailClient.Send(recipients: 1);
SampleMailClient.Send(recipients: 1000);

serverTask.WaitWithoutException();
}
Expand Down
4 changes: 2 additions & 2 deletions Examples/SampleApp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ static void Main(string[] args)
{
ServicePointManager.ServerCertificateValidationCallback = IgnoreCertificateValidationFailureForTestingOnly;

SimpleExample.Run();
//SimpleExample.Run();
//SimpleServerExample.Run();
//CustomEndpointListenerExample.Run();
//ServerCancellingExample.Run();
//SessionTracingExample.Run();
SessionTracingExample.Run();
//DependencyInjectionExample.Run();
//SecureServerExample.Run();
}
Expand Down
8 changes: 3 additions & 5 deletions Src/SmtpServer/SmtpServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<LangVersion>8.0</LangVersion>
<AssemblyName>SmtpServer</AssemblyName>
<RootNamespace>SmtpServer</RootNamespace>
<Version>10.0.0</Version>
<Version>10.0.1</Version>
<Description>.NET SmtpServer</Description>
<Authors>Cain O'Sullivan</Authors>
<Company />
Expand All @@ -17,10 +17,8 @@
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<AssemblyVersion>10.0.0</AssemblyVersion>
<FileVersion>10.0.0</FileVersion>
<PackageReleaseNotes>Version 10.0.0
- Removed MailboxFilterResult in favor of bool result. Impementations can throw SmtpResponseException for more control.
- Handled servers that send the QUIT command and immediately close the connection.
- Added an ICertificateFactory on the Endpoint that allows a new certificate to be created when required without having to restart the server.
<PackageReleaseNotes>Version 10.0.1
- Fixed a bug that could cause a failure to recognize commands when using a large number of recipients.
</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
Expand Down

0 comments on commit 1975ee2

Please sign in to comment.