Skip to content

Commit 3adea77

Browse files
committed
version update 4.4.0 -> 4.4.1
1 parent 220acab commit 3adea77

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

nuget-dotnetcli/dotnet-typegen.nuspec

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>dotnet-typegen</id>
5-
<version>4.4.0</version>
5+
<version>4.4.1</version>
66
<authors>Jacek Burzynski</authors>
77
<owners>Jacek Burzynski</owners>
88
<license type="file">LICENSE</license>
@@ -11,10 +11,7 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>TypeGen .NET Core CLI tool (TypeGen is a single-class-per-file C# to TypeScript generator)</description>
1313
<releaseNotes>
14-
- XmlDoc comments are now generated as TsDoc in TypeScript sources #130
15-
- fixed "AsUnionType" for enums not being implemented in generation specs
16-
- added OnAfterGeneration() to GenerationSpec #156
17-
- added the option to use "import type" instead of "import" for imports (the useImportType option) #161
14+
- fixed exportTypesAsInterfacesByDefault and useImportType not working in tgconfig.json
1815
</releaseNotes>
1916
<tags>code-generator generator code typescript ts csharp cs dotnet cli</tags>
2017
<packageTypes>

nuget/TypeGen.nuspec

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>TypeGen</id>
5-
<version>4.4.0</version>
5+
<version>4.4.1</version>
66
<authors>Jacek Burzynski</authors>
77
<owners>Jacek Burzynski</owners>
88
<license type="file">LICENSE</license>
@@ -11,10 +11,7 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>TypeGen is a single-class-per-file C# to TypeScript generator</description>
1313
<releaseNotes>
14-
- XmlDoc comments are now generated as TsDoc in TypeScript sources #130
15-
- fixed "AsUnionType" for enums not being implemented in generation specs
16-
- added OnAfterGeneration() to GenerationSpec #156
17-
- added the option to use "import type" instead of "import" for imports (the useImportType option) #161
14+
- fixed exportTypesAsInterfacesByDefault and useImportType not working in tgconfig.json
1815
</releaseNotes>
1916
<tags>code-generator generator code typescript ts csharp cs</tags>
2017
<dependencies>

src/TypeGen/TypeGen.Cli/AppConfig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ namespace TypeGen.Cli
88
{
99
internal class AppConfig
1010
{
11-
public static string Version => "4.4.0";
11+
public static string Version => "4.4.1";
1212
}
1313
}

0 commit comments

Comments
 (0)