Skip to content

Commit f6663c8

Browse files
committed
updated version to 6.0.2
1 parent 74eb803 commit f6663c8

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

nuget-dotnetcli/dotnet-typegen.nuspec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>dotnet-typegen</id>
5-
<version>6.0.1</version>
5+
<version>6.0.2</version>
66
<authors>Jacek Burzynski</authors>
77
<owners>Jacek Burzynski</owners>
88
<license type="file">LICENSE</license>
@@ -11,7 +11,8 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>TypeGen .NET CLI tool (TypeGen is a single-class-per-file C# to TypeScript generator)</description>
1313
<releaseNotes>
14-
- reverted PR #208 (import line break not using the OS's newline), because it caused mixed line endings
14+
- new lines are now normalized to Environment.NewLine in the generated files
15+
- re-added changes from PR #208 (Import line break was not using the OS's newline)
1516
</releaseNotes>
1617
<tags>code-generator generator code typescript ts csharp cs dotnet cli</tags>
1718
<packageTypes>

nuget/TypeGen.nuspec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>TypeGen</id>
5-
<version>6.0.1</version>
5+
<version>6.0.2</version>
66
<authors>Jacek Burzynski</authors>
77
<owners>Jacek Burzynski</owners>
88
<license type="file">LICENSE</license>
@@ -11,7 +11,8 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>TypeGen is a single-class-per-file C# to TypeScript generator</description>
1313
<releaseNotes>
14-
- reverted PR #208 (import line break not using the OS's newline), because it caused mixed line endings
14+
- new lines are now normalized to Environment.NewLine in the generated files
15+
- re-added changes from PR #208 (Import line break was not using the OS's newline)
1516
</releaseNotes>
1617
<tags>code-generator generator code typescript ts csharp cs</tags>
1718
<dependencies>

src/TypeGen/TypeGen.Cli/ApplicationConfig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ namespace TypeGen.Cli;
22

33
internal class ApplicationConfig
44
{
5-
public const string Version = "6.0.1";
5+
public const string Version = "6.0.2";
66
}

src/TypeGen/TypeGen.Cli/TypeGen.Cli.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>net9.0</TargetFramework>
55
<AssemblyVersion>6.0.0.0</AssemblyVersion>
66
<FileVersion>6.0.0.0</FileVersion>
7-
<Version>6.0.1</Version>
7+
<Version>6.0.2</Version>
88
<PackageId>TypeGen</PackageId>
99
<Authors />
1010
</PropertyGroup>

0 commit comments

Comments
 (0)