Skip to content

Commit 4b9bc42

Browse files
committed
updated version number to 6.0.1; fixed CLI smoke test
1 parent f1bd603 commit 4b9bc42

File tree

5 files changed

+8
-10
lines changed

5 files changed

+8
-10
lines changed

nuget-dotnetcli/dotnet-typegen.nuspec

Lines changed: 2 additions & 3 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.0</version>
5+
<version>6.0.1</version>
66
<authors>Jacek Burzynski</authors>
77
<owners>Jacek Burzynski</owners>
88
<license type="file">LICENSE</license>
@@ -11,8 +11,7 @@
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-
- updated to .NET 9.0
15-
- fixed import line break not using the OS's newline #208
14+
- reverted PR #208 (import line break not using the OS's newline), because it caused mixed line endings
1615
</releaseNotes>
1716
<tags>code-generator generator code typescript ts csharp cs dotnet cli</tags>
1817
<packageTypes>

nuget/TypeGen.nuspec

Lines changed: 2 additions & 3 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.0</version>
5+
<version>6.0.1</version>
66
<authors>Jacek Burzynski</authors>
77
<owners>Jacek Burzynski</owners>
88
<license type="file">LICENSE</license>
@@ -11,8 +11,7 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>TypeGen is a single-class-per-file C# to TypeScript generator</description>
1313
<releaseNotes>
14-
- updated to .NET 9.0
15-
- fixed import line break not using the OS's newline #208
14+
- reverted PR #208 (import line break not using the OS's newline), because it caused mixed line endings
1615
</releaseNotes>
1716
<tags>code-generator generator code typescript ts csharp cs</tags>
1817
<dependencies>

src/TypeGen/TypeGen.Cli.Test/CliSmokeTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ public void Cli_should_finish_with_success()
1919
const string projectToGeneratePath = "../../../../TypeGen.FileContentTest";
2020
const string cliFileName = "TypeGen.Cli.exe";
2121
string[] cliPossibleDirectories = {
22-
"../../../../TypeGen.Cli/bin/Debug/net8.0",
23-
"../../../../TypeGen.Cli/bin/Release/net8.0",
22+
"../../../../TypeGen.Cli/bin/Debug/net9.0",
23+
"../../../../TypeGen.Cli/bin/Release/net9.0",
2424
};
2525

2626
var cliFilePath = GetCliDirectory(cliPossibleDirectories);

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.0";
5+
public const string Version = "6.0.1";
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.0</Version>
7+
<Version>6.0.1</Version>
88
<PackageId>TypeGen</PackageId>
99
<Authors />
1010
</PropertyGroup>

0 commit comments

Comments
 (0)