Skip to content

Commit 7a4c924

Browse files
committed
Bump version to [v1.0.1]
Resolves: No entry
1 parent 540302a commit 7a4c924

File tree

4 files changed

+15
-14
lines changed

4 files changed

+15
-14
lines changed

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## [1.0.1] - 2024-02-19
88
### Fixed
99
- Fixed a bug in `Luhn.ComputeLuhnNumber` and `Luhn.ComputeLuhnCheckDigit` methods that sometimes returned an incorrect result.
1010

@@ -42,6 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4242
### Added
4343
- Added initial version of LuhnDotNet
4444

45-
[1.0.0]: https://github.com/shinji-san/LuhnDotNet/compare/v0.2.0...v1.0.0
45+
[1.0.1]: https://github.com/shinji-san/LuhnDotNet/compare/v1.0.0..v1.0.1
46+
[1.0.0]: https://github.com/shinji-san/LuhnDotNet/compare/v0.2.0..v1.0.0
4647
[0.2.0]: https://github.com/shinji-san/LuhnDotNet/compare/v0.1.0..v0.2.0
4748
[0.1.0]: https://github.com/shinji-san/LuhnDotNet/releases/tag/v0.1.0

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ An C# implementation of the Luhn algorithm.
6161
</thead>
6262
<tbody>
6363
<tr>
64-
<td rowspan=10><a href="https://github.com/shinji-san/LuhnDotNet/actions?query=workflow%3A%22LuhnDotNet+NuGet%22" target="_blank"><img src="https://github.com/shinji-san/LuhnDotNet/workflows/LuhnDotNet%20NuGet/badge.svg?branch=v1.0.0" alt="LuhnDotNet NuGet"/></a></td>
65-
<td rowspan=10><a href="https://badge.fury.io/nu/LuhnDotNet" target="_blank"><img src="https://badge.fury.io/nu/LuhnDotNet.svg" alt="NuGet Version 1.0.0"/></a></td>
66-
<td rowspan=10><a href="https://github.com/shinji-san/LuhnDotNet/tree/v1.0.0" target="_blank"><img src="https://img.shields.io/badge/LuhnDotNet-1.0.0-green.svg?logo=github&logoColor=959da5&color=2ebb4e&labelColor=2b3137" alt="Tag"/></a></td>
64+
<td rowspan=10><a href="https://github.com/shinji-san/LuhnDotNet/actions?query=workflow%3A%22LuhnDotNet+NuGet%22" target="_blank"><img src="https://github.com/shinji-san/LuhnDotNet/workflows/LuhnDotNet%20NuGet/badge.svg?branch=v1.0.1" alt="LuhnDotNet NuGet"/></a></td>
65+
<td rowspan=10><a href="https://badge.fury.io/nu/LuhnDotNet" target="_blank"><img src="https://badge.fury.io/nu/LuhnDotNet.svg" alt="NuGet Version 1.0.1"/></a></td>
66+
<td rowspan=10><a href="https://github.com/shinji-san/LuhnDotNet/tree/v1.0.1" target="_blank"><img src="https://img.shields.io/badge/LuhnDotNet-1.0.1-green.svg?logo=github&logoColor=959da5&color=2ebb4e&labelColor=2b3137" alt="Tag"/></a></td>
6767
<td>.NET 6</td>
6868
</tr>
6969
<tr>
@@ -100,19 +100,19 @@ An C# implementation of the Luhn algorithm.
100100

101101
1. Open a console and switch to the directory, containing your project file.
102102

103-
2. Use the following command to install version 1.0.0 of the LuhnDotNet package:
103+
2. Use the following command to install version 1.0.1 of the LuhnDotNet package:
104104

105105
```dotnetcli
106-
dotnet add package LuhnDotNet -v 1.0.0 -f <FRAMEWORK>
106+
dotnet add package LuhnDotNet -v 1.0.1 -f <FRAMEWORK>
107107
```
108108
109-
3. After the completition of the command, look at the project file to make sure that the package is successfuly installed.
109+
3. After the completion of the command, look at the project file to make sure that the package is successfully installed.
110110
111111
You can open the `.csproj` file to see the added package reference:
112112
113113
```xml
114114
<ItemGroup>
115-
<PackageReference Include="LuhnDotNet" Version="1.0.0" />
115+
<PackageReference Include="LuhnDotNet" Version="1.0.1" />
116116
</ItemGroup>
117117
```
118118
## Remove LuhnDotNet package
@@ -125,7 +125,7 @@ An C# implementation of the Luhn algorithm.
125125
dotnet remove package LuhnDotNet
126126
```
127127
128-
3. After the completition of the command, look at the project file to make sure that the package is successfuly removed.
128+
3. After the completion of the command, look at the project file to make sure that the package is successfuly removed.
129129
130130
You can open the `.csproj` file to check the deleted package reference.
131131

src/LuhnDotNet.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
<Authors>Sebastian Walther</Authors>
1111
<PackageId>LuhnDotNet</PackageId>
1212
<PackageLicenseExpression>MIT</PackageLicenseExpression>
13-
<PackageReleaseNotes>Changelog: https://github.com/shinji-san/LuhnDotNet/blob/v1.0.0/CHANGELOG.md</PackageReleaseNotes>
13+
<PackageReleaseNotes>Changelog: https://github.com/shinji-san/LuhnDotNet/blob/v1.0.1/CHANGELOG.md</PackageReleaseNotes>
1414
<PackageDescription>An C# implementation of the Luhn algorithm</PackageDescription>
1515
<PackageReadmeFile>README.md</PackageReadmeFile>
1616
<PackageTags>luhn;luhn-algorithm</PackageTags>
1717
<PackageProjectUrl>https://github.com/shinji-san/LuhnDotNet</PackageProjectUrl>
1818
<RepositoryUrl>https://github.com/shinji-san/LuhnDotNet</RepositoryUrl>
1919
<RepositoryType>git</RepositoryType>
20-
<Version>1.0.0</Version>
20+
<Version>1.0.1</Version>
2121
<Authors>Sebastian Walther</Authors>
2222
<Company>Private Person</Company>
2323
<GenerateDocumentationFile>true</GenerateDocumentationFile>

src/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515

1616
[assembly: Guid("bba40d96-b58d-4a8f-b6fc-3699e0addf98")]
1717

18-
[assembly: AssemblyVersion("1.0.0")]
19-
[assembly: AssemblyFileVersion("1.0.0")]
18+
[assembly: AssemblyVersion("1.0.1")]
19+
[assembly: AssemblyFileVersion("1.0.1")]
2020
[assembly: NeutralResourcesLanguage("en")]
2121

2222
[assembly: System.CLSCompliant(true)]

0 commit comments

Comments
 (0)