Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to 1.0.0-beta11 #116

Merged
merged 1 commit into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
Changelog
---

## [v1.0.0-beta10](https://github.com/andrewlock/NetEscapades.EnumGenerators/compare/v1.0.0-beta09..v1.0.0-beta10) (2024-10-22)
## [v1.0.0-beta11](https://github.com/andrewlock/NetEscapades.EnumGenerators/compare/v1.0.0-beta09..v1.0.0-beta11) (2024-10-24)

### Features
- Add optional interceptor for ToString() and HasFlag() (#94, #101, #104, #105, #106, #108)
- Add optional interceptor for ToString() and HasFlag() (#94, #101, #104, #105, #106, #108, #113)
- Ignore usages of obsolete enum members in generated code (#111)

### Fixes
- Fix escaping of strings in description and display attributes (#109)
- Ensure we can handle enums with the same name in different namespaces (#114)

## [v1.0.0-beta09](https://github.com/andrewlock/NetEscapades.EnumGenerators/compare/v1.0.0-beta08..v1.0.0-beta09) (2024-05-15)

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ This adds a `<PackageReference>` to your project. You can additionally mark the
</PropertyGroup>

<!-- Add the package -->
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta10"
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta11"
PrivateAssets="all" ExcludeAssets="runtime" />
<!-- -->

Expand Down Expand Up @@ -178,7 +178,7 @@ To enable interception for a project, update to the latest version of _NetEscapa
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta10"
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta11"
PrivateAssets="all" ExcludeAssets="runtime" />
</ItemGroup>

Expand Down Expand Up @@ -232,7 +232,7 @@ Your project file should look something like this:
</PropertyGroup>

<!-- Add the package -->
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta10"
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta11"
PrivateAssets="all"
ExcludeAssets="compile;runtime" />
<!-- ☝ Add compile to the list of excluded assets. -->
Expand All @@ -257,7 +257,7 @@ If you wish to preserve these attributes in the build output, you can define the
</PropertyGroup>

<!-- Add the package -->
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta10" PrivateAssets="all" />
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta11" PrivateAssets="all" />
<!-- ☝ You must not exclude the runtime assets in this case -->

</Project>
Expand Down
5 changes: 3 additions & 2 deletions releasenotes.props
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
<Project>
<PropertyGroup>
<PackageReleaseNotes Condition="'$(PackageVersion)' == '1.0.0-beta10'">
<PackageReleaseNotes Condition="'$(PackageVersion)' == '1.0.0-beta11'">
<![CDATA[

Features
- Add optional interceptor for ToString() and HasFlag() (#94, #101, #104, #105, #106, #108)
- Add optional interceptor for ToString() and HasFlag() (#94, #101, #104, #105, #106, #108, #113)
- Ignore usages of obsolete enum members in generated code (#111)

Fixes
- Fix escaping of strings in description and display attributes (#109)
- Ensure we can handle enums with the same name in different namespaces (#114)

]]>
</PackageReleaseNotes>
Expand Down
2 changes: 1 addition & 1 deletion src/NetEscapades.EnumGenerators/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace NetEscapades.EnumGenerators;

public static class Constants
{
public const string Version = "1.0.0-beta10";
public const string Version = "1.0.0-beta11";

public const string EnabledPropertyName = "EnableEnumGeneratorInterceptor";
}
2 changes: 1 addition & 1 deletion version.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<VersionPrefix>1.0.0</VersionPrefix>
<VersionSuffix>beta10</VersionSuffix>
<VersionSuffix>beta11</VersionSuffix>
<PackageVersion Condition="'$(VersionSuffix)' == ''">$(VersionPrefix)</PackageVersion>
<PackageVersion Condition="'$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix)</PackageVersion>
</PropertyGroup>
Expand Down
Loading