Skip to content

Commit c6d09ce

Browse files
committed
Bump version to beta04
1 parent 5144c25 commit c6d09ce

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

CHANGELOG.md

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

3+
## [v1.0.0-beta04]
4+
5+
New Features:
6+
7+
* Added support for IDs inside nested classes/records/structs (Fixes https://github.com/andrewlock/StronglyTypedId/issues/40)
8+
39
## [v1.0.0-beta03]
410

511
Breaking Changes:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ To install the packages, add the references to your _csproj_ file so that it loo
6969
</PropertyGroup>
7070

7171
<!-- Core package -->
72-
<PackageReference Include="StronglyTypedId" Version="1.0.0-beta03" />
72+
<PackageReference Include="StronglyTypedId" Version="1.0.0-beta04" />
7373
<!-- -->
7474

7575
</Project>
@@ -146,8 +146,8 @@ Add the package to your solution, ensuring you set `"PrivateAssets="All"` in the
146146
</PropertyGroup>
147147

148148
<!-- Core package -->
149-
<PackageReference Include="StronglyTypedId" Version="1.0.0-beta03" />
150-
<PackageReference Include="StronglyTypedId.Attributes" Version="1.0.0-beta03">
149+
<PackageReference Include="StronglyTypedId" Version="1.0.0-beta04" />
150+
<PackageReference Include="StronglyTypedId.Attributes" Version="1.0.0-beta04">
151151
<PrivateAssets>All</PrivateAssets>
152152
</PackageReference>
153153
<!-- -->

releasenotes.props

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55
66
Version 0.x of this library used the helper library CodeGeneration.Roslyn for build-time source generation. In version 1.x this approach has been completely replaced in favour of source generators, as these are explicitly supported in .NET 5+. As part of this change, there were a number of additional features added and breaking changes made.
77
8+
## Changes in 1.0.0-beta04:
9+
10+
New Features:
11+
12+
* Added support for IDs inside nested classes/records/structs (Fixes https://github.com/andrewlock/StronglyTypedId/issues/40)
13+
814
## Changes in 1.0.0-beta03:
915
1016
Breaking Changes:

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

0 commit comments

Comments
 (0)