Skip to content

Commit

Permalink
Bump library version: 5.0.1
Browse files Browse the repository at this point in the history
Only done to update the changelog
  • Loading branch information
dougwaldron committed Jan 2, 2024
1 parent 2e9c5f3 commit f85f051
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/AppLibrary/AppLibrary.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>5.0.0</Version>
<Version>5.0.1</Version>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
Expand Down
13 changes: 11 additions & 2 deletions src/AppLibrary/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
v5.0.1

- Updated changelog for v5.0.0 release.

v5.0.0

- Upgrade to .NET 8.0.
-
- Upgraded to .NET 8.0.
- Added entity and repository interfaces that default to using a GUID primary key and updated the abstract classes to
use these new interfaces.
- Breaking changes:
- Uses of `EntityNotFoundException` will need to be updated to provide the class type. For example,
`EntityNotFoundException(typeof(MyEntity), id)` should be replaced with `EntityNotFoundException<MyEntity>(id)`.
- References to `IEntity<Guid>` may need to be replaced with `IEntity`.

v4.1.0

Expand Down

0 comments on commit f85f051

Please sign in to comment.