Skip to content

Commit 28abb5e

Browse files
committed
Minor csproj changes / typo
1 parent 6b68ab7 commit 28abb5e

2 files changed

Lines changed: 13 additions & 4 deletions

File tree

readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,9 @@ A future release of Solar's bcrypt code should also support 'b'.
200200

201201
https://github.com/BcryptNet/bcrypt.net/releases
202202

203+
*v2.1.1 -*
204+
* Minor csproj changes / typo
205+
203206
*v2.1.0 -*
204207

205208
* Adds enhanced mode; enhanced hashing allows you to opt-in to ensuring optimal entropy on your users passwords by first making use of the fast SHA384 algorithm before BCrypt hashes the password.

src/BCrypt.Net/BCrypt.Net.csproj

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,27 @@
66
<AssemblyName>BCrypt.Net-Next</AssemblyName>
77

88
<VersionPrefix>2.1.0</VersionPrefix>
9-
<Version>2.1.0</Version>
10-
<AssemblyVersion>2.1.0.0</AssemblyVersion>
11-
<FileVersion>2.1.0.0</FileVersion>
9+
<Version>2.1.1</Version>
10+
<AssemblyVersion>2.1.1.0</AssemblyVersion>
11+
<FileVersion>2.1.1.0</FileVersion>
1212

1313
<Authors>https://github.com/BcryptNet/bcrypt.net/graphs/contributors</Authors>
1414

1515
<TargetFrameworks>net20;net35;net40;net45;net451;net452;net462;netstandard1.3;netstandard1.6;netcoreapp1.0;netcoreapp1.1</TargetFrameworks>
1616

1717
<PackageId>BCrypt.Net-Next</PackageId>
18+
<Title>BCrypt.Net - Next</Title>
19+
<Authors>Chris McKee, Ryan D. Emerl, Damien Miller</Authors>
20+
<Copyright>2006-2017 Chris McKee, Ryan D. Emerl, Damien Miller</Copyright>
21+
<Description>A fixed, enhanced and namespace compatible version of BCrypt.Net port of jBCrypt implemented in C#. It uses a variant of the Blowfish encryption algorithm’s keying schedule, and introduces a work factor, which allows you to determine how expensive the hash function will be, allowing the algorithm to be "future-proof".</Description>
22+
<Summary>A fixed, enhanced and namespace compatible version of BCrypt.Net port of jBCrypt implemented in C#.</Summary>
1823
<PackageTags>bcrypt;BCrypt.Net;cryptography;hashing;password;security,hash;crypto;blowfish</PackageTags>
1924
<PackageReleaseNotes>See https://github.com/BcryptNet/bcrypt.net/releases </PackageReleaseNotes>
2025
<PackageIconUrl>https://raw.githubusercontent.com/BcryptNet/bcrypt.net/master/ico64.png</PackageIconUrl>
2126
<PackageProjectUrl>https://github.com/BcryptNet/bcrypt.net</PackageProjectUrl>
22-
<PackageLicenseUrl>https://github.com/BcryptNet/bcrypt.net/blob/master/licence.txt,</PackageLicenseUrl>
27+
<PackageLicenseUrl>https://github.com/BcryptNet/bcrypt.net/blob/master/licence.txt</PackageLicenseUrl>
2328
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
29+
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
2430

2531
<RepositoryType>git</RepositoryType>
2632
<RepositoryUrl>https://github.com/BcryptNet/bcrypt.net</RepositoryUrl>

0 commit comments

Comments
 (0)