Skip to content

Commit

Permalink
update version to 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre3 committed Jan 6, 2024
1 parent edd5d9c commit e6e0f13
Show file tree
Hide file tree
Showing 7 changed files with 518 additions and 309 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,21 @@
<PackAsTool>true</PackAsTool>
<ToolCommandName>puml-gen</ToolCommandName>
<Description>This is a generator to create a class-diagram of PlantUML from the C# source code.</Description>
<Copyright>© 2015-2023 pierre3</Copyright>
<Copyright>© 2015-2024 pierre3</Copyright>
<PackageLicenseUrl></PackageLicenseUrl>
<PackageProjectUrl>https://github.com/pierre3/PlantUmlClassDiagramGenerator</PackageProjectUrl>
<RepositoryUrl>https://github.com/pierre3/PlantUmlClassDiagramGenerator</RepositoryUrl>
<RepositoryType></RepositoryType>
<PackageTags>plantuml</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.3.4</Version>
<Version>1.4.0</Version>
<Authors>pierre3</Authors>
<Company />
<Product />
<PackageReleaseNotes>
[V1.3.4]
- Added support for the "struct" keyword in type definitions.
- Added exclude path to consider "**/" syntax (filtering on all folder levels).
- Fixed attributeRequired not working in Directory based Generation
- Fixed missing 'abstract' keyword for record type
[V1.4.0]
- Updated the target framework to .NET 8.0.
- Fixed an issue where Nullable types were not being output with the createAssociation option.
</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,27 @@
</ItemGroup>

<ItemGroup>
<None Remove="uml\NullableRelationship.puml" />
<Compile Remove="testData\AttributeRequired.cs" />
<Compile Remove="testData\Attributes.cs" />
<Compile Remove="testData\CurlyBrackets.cs" />
<Compile Remove="testData\DefaultModifierType.cs" />
<Compile Remove="testData\GenericsType.cs" />
<Compile Remove="testData\InputClasses.cs" />
<Compile Remove="testData\NullableRelationship.cs" />
<Compile Remove="testData\NullableType.cs" />
<Compile Remove="testData\RecordType.cs" />
</ItemGroup>

<ItemGroup>
<None Include="testData\AttributeRequired.cs" />
<None Include="testData\Attributes.cs" />
<None Include="testData\CurlyBrackets.cs" />
<None Include="testData\DefaultModifierType.cs" />
<None Include="testData\GenericsType.cs" />
<None Include="testData\InputClasses.cs" />
<None Include="testData\NullableRelationship.cs" />
<None Include="testData\NullableType.cs" />
<None Include="testData\RecordType.cs" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions tools/csharp-to-plantuml/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
All notable changes to the "csharp-to-plantuml" extension will be documented in this file.

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
## [1.4.0]
- Updated the target framework to .NET 8.0.
- Fixed an issue where Nullable types were not being output with the createAssociation option.

## [1.3.4]
- Added support for the "struct" keyword in type definitions.
Expand Down
2 changes: 1 addition & 1 deletion tools/csharp-to-plantuml/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015-2023 pierre3
Copyright (c) 2015-2024 pierre3

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 5 additions & 1 deletion tools/csharp-to-plantuml/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Create class diagrams of PlantUML from C# source code.

## Requirements
- [.NET Core 6.0 Runtime](https://dotnet.microsoft.com/download/dotnet-core/6.0/runtime)
- [.NET Core 8.0 Runtime](https://dotnet.microsoft.com/download/dotnet-core/8.0/runtime)

## Extension Settings

Expand All @@ -30,6 +30,10 @@ Create class diagrams of PlantUML from C# source code.


## Release Notes
## 1.4.0
- Updated the target framework to .NET 8.0.
- Fixed an issue where Nullable types were not being output with the createAssociation option.

## 1.3.4
- Added support for the "struct" keyword in type definitions.
- Added exclude path to consider "**/" syntax (filtering on all folder levels).
Expand Down
Loading

0 comments on commit e6e0f13

Please sign in to comment.