Skip to content

Commit beb87cf

Browse files
committed
Bumped version to 1.3.0
1 parent 0474400 commit beb87cf

File tree

9 files changed

+17
-14
lines changed

9 files changed

+17
-14
lines changed

EmailValidation.nuspec

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>EmailValidation</id>
5-
<version>1.2.0</version>
5+
<version>1.3.0</version>
66
<title>EmailValidation</title>
77
<authors>Jeffrey Stedfast</authors>
88
<owners>Jeffrey Stedfast</owners>
@@ -15,11 +15,13 @@
1515
Supports mail addresses as defined in rfc5322 as well as the new Internationalized Mail Address standards (rfc653x).</description>
1616
<summary>A simple (but correct) .NET class for validating email addresses.</summary>
1717
<releaseNotes>
18-
* Added new TryValidate() method which reports errors.
18+
* Dropped support for net6.0 but added net8.0 in its place.
19+
* Allow custom error messages in EmailAttribute.
1920
</releaseNotes>
2021
<copyright>Jeffrey Stedfast</copyright>
2122
<language>en-US</language>
2223
<tags>email validation</tags>
24+
<readme>docs\README.md</readme>
2325
<frameworkAssemblies>
2426
</frameworkAssemblies>
2527
<dependencies>
@@ -34,6 +36,7 @@ Supports mail addresses as defined in rfc5322 as well as the new Internationaliz
3436
</dependencies>
3537
</metadata>
3638
<files>
39+
<file src="README.md" target="docs\README.md" />
3740
<file src="EmailValidation\bin\Release\net462\EmailValidation.dll" target="lib\net462\EmailValidation.dll" />
3841
<file src="EmailValidation\bin\Release\net462\EmailValidation.xml" target="lib\net462\EmailValidation.xml" />
3942
<file src="EmailValidation\bin\Release\net8.0\EmailValidation.dll" target="lib\net8.0\EmailValidation.dll" />

EmailValidation/EmailAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Authors: Michel Feinstein <michel@feinstein.com.br>
55
// Jeffrey Stedfast <jestedfa@microsoft.com>
66
//
7-
// Copyright (c) 2013-2024 Jeffrey Stedfast
7+
// Copyright (c) 2013-2025 Jeffrey Stedfast
88
//
99
// Permission is hereby granted, free of charge, to any person obtaining a copy
1010
// of this software and associated documentation files (the "Software"), to deal

EmailValidation/EmailValidationError.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//
44
// Author: Jeffrey Stedfast <jestedfa@microsoft.com>
55
//
6-
// Copyright (c) 2013-2024 Jeffrey Stedfast
6+
// Copyright (c) 2013-2025 Jeffrey Stedfast
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining a copy
99
// of this software and associated documentation files (the "Software"), to deal

EmailValidation/EmailValidationErrorCode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//
44
// Author: Jeffrey Stedfast <jestedfa@microsoft.com>
55
//
6-
// Copyright (c) 2013-2024 Jeffrey Stedfast
6+
// Copyright (c) 2013-2025 Jeffrey Stedfast
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining a copy
99
// of this software and associated documentation files (the "Software"), to deal

EmailValidation/EmailValidator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//
44
// Author: Jeffrey Stedfast <jestedfa@microsoft.com>
55
//
6-
// Copyright (c) 2013-2024 Jeffrey Stedfast
6+
// Copyright (c) 2013-2025 Jeffrey Stedfast
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining a copy
99
// of this software and associated documentation files (the "Software"), to deal

EmailValidation/Properties/AssemblyInfo.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//
44
// Author: Jeffrey Stedfast <jestedfa@microsoft.com>
55
//
6-
// Copyright (c) 2013-2024 Jeffrey Stedfast
6+
// Copyright (c) 2013-2025 Jeffrey Stedfast
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining a copy
99
// of this software and associated documentation files (the "Software"), to deal
@@ -34,7 +34,7 @@
3434
[assembly: AssemblyConfiguration ("")]
3535
[assembly: AssemblyCompany ("")]
3636
[assembly: AssemblyProduct ("EmailValidation")]
37-
[assembly: AssemblyCopyright ("Copyright © 2013-2024 Jeffrey Stedfast")]
37+
[assembly: AssemblyCopyright ("Copyright © 2013-2025 Jeffrey Stedfast")]
3838
[assembly: AssemblyTrademark ("")]
3939
[assembly: AssemblyCulture ("")]
4040

@@ -64,6 +64,6 @@
6464
//
6565
// If there have only been bug fixes, bump the Micro Version and/or the Build Number
6666
// in the AssemblyFileVersion attribute.
67-
[assembly: AssemblyInformationalVersion ("1.2.0")]
68-
[assembly: AssemblyFileVersion ("1.2.0")]
69-
[assembly: AssemblyVersion ("1.2.0.0")]
67+
[assembly: AssemblyInformationalVersion ("1.3.0")]
68+
[assembly: AssemblyFileVersion ("1.3.0")]
69+
[assembly: AssemblyVersion ("1.3.0.0")]

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2013-2024 Jeffrey Stedfast
3+
Copyright (c) 2013-2025 Jeffrey Stedfast
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ namespace Example {
8080
## License Information
8181

8282
```
83-
EmailValidation is Copyright (C) 2013-2024 Jeffrey Stedfast and is licensed under the MIT license:
83+
EmailValidation is Copyright (C) 2013-2025 Jeffrey Stedfast and is licensed under the MIT license:
8484
8585
Permission is hereby granted, free of charge, to any person obtaining a copy
8686
of this software and associated documentation files (the "Software"), to deal

UnitTests/EmailValidationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//
44
// Author: Jeffrey Stedfast <jestedfa@microsoft.com>
55
//
6-
// Copyright (c) 2013-2024 Jeffrey Stedfast
6+
// Copyright (c) 2013-2025 Jeffrey Stedfast
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining a copy
99
// of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)