Skip to content

Commit 846629d

Browse files
authored
Version bump 1.0.0-beta19 (#226)
1 parent 6c85969 commit 846629d

7 files changed

Lines changed: 21 additions & 10 deletions

File tree

CHANGELOG.md

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

4+
## [v1.0.0-beta19](https://github.com/andrewlock/NetEscapades.EnumGenerators/compare/v1.0.0-beta18..v1.0.0-beta19) (2026-01-05)
5+
6+
### Fixes
7+
8+
* Fix README image links
9+
410
## [v1.0.0-beta18](https://github.com/andrewlock/NetEscapades.EnumGenerators/compare/v1.0.0-beta16..v1.0.0-beta18) (2026-01-05)
511

612
### Breaking Changes

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ This adds a `<PackageReference>` to your project:
6262
</PropertyGroup>
6363

6464
<!-- Add the package -->
65-
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta18" />
65+
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta19" />
6666
<!-- -->
6767

6868
</Project>
@@ -361,7 +361,7 @@ This adds a `<PackageReference>` to your project. You can additionally mark the
361361
</PropertyGroup>
362362

363363
<!-- Add the package -->
364-
<PackageReference Include="NetEscapades.EnumGenerators.Interceptors" Version="1.0.0-beta18"
364+
<PackageReference Include="NetEscapades.EnumGenerators.Interceptors" Version="1.0.0-beta19"
365365
PrivateAssets="all" ExcludeAssets="runtime" />
366366
<!-- -->
367367

@@ -415,7 +415,7 @@ Your project file should look something like this:
415415
</PropertyGroup>
416416

417417
<!-- Add the package -->
418-
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta18" />
418+
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta19" />
419419
</Project>
420420
```
421421

@@ -436,7 +436,7 @@ If you wish to preserve these attributes in the build output, you can define the
436436
</PropertyGroup>
437437

438438
<!-- Add the package -->
439-
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta18" PrivateAssets="all" />
439+
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta19" PrivateAssets="all" />
440440
<!-- ☝ You must not exclude the runtime assets in this case -->
441441

442442
</Project>

releasenotes.props

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
<PropertyGroup>
33
<PackageReleaseNotes>
44
<![CDATA[
5+
## 1.0.0-beta19
6+
7+
### Fixes
8+
9+
* Fix README image links
510
611
### Breaking Changes
712

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-beta18" />
58+
<PackageReference Include="NetEscapades.EnumGenerators.Interceptors" Version="1.0.0-beta19" />
5959
<!-- -->
6060

6161
</Project>

src/NetEscapades.EnumGenerators/Constants.cs

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

33
public static class Constants
44
{
5-
public const string Version = "1.0.0-beta18";
5+
public const string Version = "1.0.0-beta19";
66
public const string MetadataSourcePropertyName = "EnumGenerator_EnumMetadataSource";
77
public const string ForceExtensionMembers = "EnumGenerator_ForceExtensionMembers";
88
}

src/NetEscapades.EnumGenerators/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[# ![](https://raw.githubusercontent.com/andrewlock/NetEscapades.EnumGenerators/refs/heads/main/docs/images/icon_32.png) NetEscapades.EnumGenerators]()
1+
# ![](https://raw.githubusercontent.com/andrewlock/NetEscapades.EnumGenerators/refs/heads/main/docs/images/icon_32.png) NetEscapades.EnumGenerators
22

33
![Build status](https://github.com/andrewlock/NetEscapades.EnumGenerators/actions/workflows/BuildAndPack.yml/badge.svg)
44
[![NuGet](https://img.shields.io/nuget/v/NetEscapades.EnumGenerators.svg)](https://www.nuget.org/packages/NetEscapades.EnumGenerators/)
@@ -83,7 +83,7 @@ This adds a `<PackageReference>` to your project:
8383
</PropertyGroup>
8484

8585
<!-- Add the package -->
86-
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta18" />
86+
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta19" />
8787
<!-- -->
8888

8989
</Project>
@@ -452,6 +452,6 @@ The `[EnumExtensions]` attribute is decorated with the `[Conditional]` attribute
452452
</PropertyGroup>
453453

454454
<!-- Add the package -->
455-
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta18" />
455+
<PackageReference Include="NetEscapades.EnumGenerators" Version="1.0.0-beta19" />
456456
</Project>
457457
```

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>beta18</VersionSuffix>
4+
<VersionSuffix>beta19</VersionSuffix>
55
<PackageVersion Condition="'$(VersionSuffix)' == ''">$(VersionPrefix)</PackageVersion>
66
<PackageVersion Condition="'$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix)</PackageVersion>
77
</PropertyGroup>

0 commit comments

Comments
 (0)