Skip to content

Commit 8250d65

Browse files
committed
- Updates Readme and project version number
1 parent e222f2b commit 8250d65

2 files changed

Lines changed: 15 additions & 2 deletions

File tree

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,21 @@ Small tool to scaffold a CSV file into a C# class, with options to add the Displ
33

44
# Instalation
55
```shell
6-
dotnet tool install --global Csv2Class --version 1.1.0
6+
dotnet tool install --global Csv2Class --version 1.2.0
77
```
8+
9+
# Release notes
10+
11+
## 1.2.0
12+
* If multiple columns have the same header, adds the NameIndex attribute to differentiate
13+
* Fixes a bug where multiple columns could end up with the same property name, after sanitation
14+
15+
## 1.1.0
16+
* Fixes a bug where an empty column would end up with int? type instead of string
17+
18+
## 1.0.0
19+
* First Release
20+
821
# Usage
922

1023
## Basic usage

src/Csv2Class/Csv2Class.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<PackageTags>c# csharp csv class scaffold</PackageTags>
1616
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
1717
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
18-
<Version>1.1.0</Version>
18+
<Version>1.2.0</Version>
1919
</PropertyGroup>
2020

2121
<ItemGroup>

0 commit comments

Comments
 (0)