Skip to content

Commit bed9e9c

Browse files
authored
Bump version to beta14 (#155)
1 parent d88313b commit bed9e9c

File tree

6 files changed

+19
-11
lines changed

6 files changed

+19
-11
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changelog
22
---
33

4+
## [v1.0.0-beta14](https://github.com/andrewlock/NetEscapades.EnumGenerators/compare/v1.0.0-beta13..v1.0.0-beta14) (2025-06-15)
5+
6+
### Features
7+
- Expose generated static methods as C#14 static extension members on enums, when building with C#14 (#154)
8+
9+
### Fixes
10+
- Improve XML documentation (#142) Thanks [@paulomorgado](https://github.com/paulomorgado)!
11+
- Add support for enums with duplicate values (#143) Thanks [@paulomorgado](https://github.com/paulomorgado)!
12+
413
## [v1.0.0-beta13](https://github.com/andrewlock/NetEscapades.EnumGenerators/compare/v1.0.0-beta12..v1.0.0-beta13) (2025-05-11)
514

615
### Features

releasenotes.props

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
<Project>
22
<PropertyGroup>
3-
<PackageReleaseNotes Condition="'$(PackageVersion)' == '1.0.0-beta13'">
3+
<PackageReleaseNotes Condition="'$(PackageVersion)' == '1.0.0-beta14'">
44
<![CDATA[
55
66
### Features
7-
- Added `AsUnderlyingType()` and `GetValuesAsUnderlyingType()` (#125) Thanks @TheConstructor!
7+
- Expose generated static methods as C#14 static extension members on enums, when building with C#14 (#154)
88
99
### Fixes
10-
- Replaced multiline verbatim strings (`@""`) with raw string literals (#87) Thanks @Guiorgy!
11-
- Update `GetValues`, `GetNames` and `GetValuesAsUnderlyingType` to match System.Enum order (#134) Thanks @TheConstructor!
12-
- Directly call `ToString` on unnamed numeric values to reduce overhead (#135) @TheConstructor!
10+
- Improve XML documentation (#142) Thanks [@paulomorgado](https://github.com/paulomorgado)!
11+
- Add support for enums with duplicate values (#143) Thanks [@paulomorgado](https://github.com/paulomorgado)!
1312
1413
]]>
1514
</PackageReleaseNotes>

src/NetEscapades.EnumGenerators.Interceptors/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ This adds a `<PackageReference>` to your project. You can additionally mark the
5555
</PropertyGroup>
5656

5757
<!-- Add the package -->
58-
<PackageReference Include="NetEscapades.EnumGenerators.Interceptors" Version="1.0.0-beta13"
58+
<PackageReference Include="NetEscapades.EnumGenerators.Interceptors" Version="1.0.0-beta14"
5959
PrivateAssets="all" ExcludeAssets="runtime" />
6060
<!-- -->
6161

src/NetEscapades.EnumGenerators/Constants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ namespace NetEscapades.EnumGenerators;
22

33
public static class Constants
44
{
5-
public const string Version = "1.0.0-beta13";
5+
public const string Version = "1.0.0-beta14";
66
}

src/NetEscapades.EnumGenerators/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ This adds a `<PackageReference>` to your project. You can additionally mark the
8282
</PropertyGroup>
8383

8484
<!-- Add the package -->
85-
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta13"
85+
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta14"
8686
PrivateAssets="all" ExcludeAssets="runtime" />
8787
<!-- -->
8888

@@ -369,7 +369,7 @@ Your project file should look something like this:
369369
</PropertyGroup>
370370

371371
<!-- Add the package -->
372-
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta13"
372+
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta14"
373373
PrivateAssets="all"
374374
ExcludeAssets="compile;runtime" />
375375
<!-- ☝ Add compile to the list of excluded assets. -->
@@ -394,7 +394,7 @@ If you wish to preserve these attributes in the build output, you can define the
394394
</PropertyGroup>
395395

396396
<!-- Add the package -->
397-
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta13" PrivateAssets="all" />
397+
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta14" PrivateAssets="all" />
398398
<!-- ☝ You must not exclude the runtime assets in this case -->
399399

400400
</Project>

version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<VersionPrefix>1.0.0</VersionPrefix>
4-
<VersionSuffix>beta13</VersionSuffix>
4+
<VersionSuffix>beta14</VersionSuffix>
55
<PackageVersion Condition="'$(VersionSuffix)' == ''">$(VersionPrefix)</PackageVersion>
66
<PackageVersion Condition="'$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix)</PackageVersion>
77
</PropertyGroup>

0 commit comments

Comments
 (0)