Skip to content

Commit fd8e174

Browse files
committed
version update to 4.5.0
1 parent 19ff784 commit fd8e174

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

nuget-dotnetcli/dotnet-typegen.nuspec

Lines changed: 4 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>4.4.1</version>
5+
<version>4.5.0</version>
66
<authors>Jacek Burzynski</authors>
77
<owners>Jacek Burzynski</owners>
88
<license type="file">LICENSE</license>
@@ -11,7 +11,9 @@
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-
- fixed exportTypesAsInterfacesByDefault and useImportType not working in tgconfig.json
14+
- added the ability to blacklist/whitelist individual types (this also fixes records not generating correctly #164)
15+
- TS class : TS interface inheritance is now possible - in this case TS class implements TS interface
16+
- added the ability to specify custom header and body as an attribute or spec #166 #167
1517
</releaseNotes>
1618
<tags>code-generator generator code typescript ts csharp cs dotnet cli</tags>
1719
<packageTypes>

nuget/TypeGen.nuspec

Lines changed: 4 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>4.4.1</version>
5+
<version>4.5.0</version>
66
<authors>Jacek Burzynski</authors>
77
<owners>Jacek Burzynski</owners>
88
<license type="file">LICENSE</license>
@@ -11,7 +11,9 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>TypeGen is a single-class-per-file C# to TypeScript generator</description>
1313
<releaseNotes>
14-
- fixed exportTypesAsInterfacesByDefault and useImportType not working in tgconfig.json
14+
- added the ability to blacklist/whitelist individual types (this also fixes records not generating correctly #164)
15+
- TS class : TS interface inheritance is now possible - in this case TS class implements TS interface
16+
- added the ability to specify custom header and body as an attribute or spec #166 #167
1517
</releaseNotes>
1618
<tags>code-generator generator code typescript ts csharp cs</tags>
1719
<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.1";
11+
public static string Version => "4.5.0";
1212
}
1313
}

0 commit comments

Comments
 (0)