Skip to content

Commit 0a698f1

Browse files
committed
Bump version to beta06
1 parent 0a1a180 commit 0a698f1

File tree

4 files changed

+19
-5
lines changed

4 files changed

+19
-5
lines changed

CHANGELOG.md

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

3+
## [v1.0.0-beta06]
4+
5+
Features
6+
* Added support for Masstransit.NewId ([thanks @Khitiara](https://github.com/andrewlock/StronglyTypedId/pull/52)!) Fixes https://github.com/andrewlock/StronglyTypedId/issues/51
7+
* Added parameterless constructor to EF Core ValueConverts for compatibility with global conventions. Fixes https://github.com/andrewlock/StronglyTypedId/issues/50
8+
* Added `#pragma warning disable 1591` to generated code to avoid warning CS1591. Fixes https://github.com/andrewlock/StronglyTypedId/issues/47
9+
10+
311
## [v1.0.0-beta05]
412

513
Breaking Changes:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ To use the the [StronglyTypedId NuGet package](https://www.nuget.org/packages/St
5858
To install the packages, add the references to your _csproj_ file, for example by running
5959

6060
```bash
61-
dotnet add package StronglyTypedId --version 1.0.0-beta05
61+
dotnet add package StronglyTypedId --version 1.0.0-beta06
6262
```
6363

6464
This adds a `<PackageReference>` to your project. You can additionally mark the package as `PrivateAsets="all"` and `ExcludeAssets="runtime"`.
@@ -74,7 +74,7 @@ This adds a `<PackageReference>` to your project. You can additionally mark the
7474
</PropertyGroup>
7575

7676
<!-- Add the package -->
77-
<PackageReference Include="StronglyTypedId" Version="1.0.0-beta05" PrivateAssets="all" ExcludeAssets="runtime" />
77+
<PackageReference Include="StronglyTypedId" Version="1.0.0-beta06" PrivateAssets="all" ExcludeAssets="runtime" />
7878
<!-- -->
7979

8080
</Project>
@@ -181,7 +181,7 @@ Your project file should look something like this:
181181
</PropertyGroup>
182182

183183
<!-- Add the package -->
184-
<PackageReference Include="StronglyTypedId" Version="1.0.0-beta05"
184+
<PackageReference Include="StronglyTypedId" Version="1.0.0-beta06"
185185
PrivateAssets="all"
186186
ExcludeAssets="compile;runtime" />
187187
<!-- ☝ Add compile to the list of excluded assets. -->
@@ -206,7 +206,7 @@ If you wish to preserve these attributes in the build output, you can define the
206206
</PropertyGroup>
207207

208208
<!-- Add the package -->
209-
<PackageReference Include="StronglyTypedId" Version="1.0.0-beta05" PrivateAssets="all" />
209+
<PackageReference Include="StronglyTypedId" Version="1.0.0-beta06" PrivateAssets="all" />
210210
<!-- ☝ You must not exclude the runtime assets in this case -->
211211

212212
</Project>

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-beta06:
9+
10+
* Added support for Masstransit.NewId (thanks @Khitiara!) Fixes https://github.com/andrewlock/StronglyTypedId/issues/51
11+
* Added parameterless constructor to EF Core ValueConverts for compatibility with global conventions. Fixes https://github.com/andrewlock/StronglyTypedId/issues/50
12+
* Added `#pragma warning disable 1591` to generated code to avoid warning CS1591. Fixes https://github.com/andrewlock/StronglyTypedId/issues/47
13+
814
## Changes in 1.0.0-beta05:
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>beta05</VersionSuffix>
4+
<VersionSuffix>beta06</VersionSuffix>
55
<PackageVersion Condition="'$(VersionSuffix)' == ''">$(VersionPrefix)</PackageVersion>
66
<PackageVersion Condition="'$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix)</PackageVersion>
77
</PropertyGroup>

0 commit comments

Comments
 (0)