Skip to content

Commit 155be87

Browse files
authored
Merge pull request #8 from CodeShayk/release/v4.0.0
Release/v4.0.0
2 parents 258242c + 4ab1ef8 commit 155be87

5 files changed

Lines changed: 25 additions & 21 deletions

File tree

.github/workflows/CI-Build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Step-04 Install .NET
5353
uses: actions/setup-dotnet@v3
5454
with:
55-
dotnet-version: 6.0.x
55+
dotnet-version: 9.0.x
5656

5757
- name: Step-05 Restore dependencies
5858
run: dotnet restore
@@ -101,7 +101,7 @@ jobs:
101101
- name: Step-04 Install .NET
102102
uses: actions/setup-dotnet@v3
103103
with:
104-
dotnet-version: 6.0.x
104+
dotnet-version: 9.0.x
105105

106106
- name: Step-05 Restore dependencies
107107
run: dotnet restore
@@ -165,7 +165,7 @@ jobs:
165165
-X POST \
166166
-H "Accept:application/vnd.github+json" \
167167
-H "Authorization:token ${{ secrets.GITHUB_TOKEN }}" \
168-
https://api.github.com/ninjarocks/DomainEvents/releases \
168+
https://api.github.com/Codeshayk/DomainEvents/releases \
169169
-d '{"tag_name":v${{ needs.Package.outputs.semVersion }},"target_commitish":"master","name":"DomainEvents","body":"Relese version ${{ needs.Package.outputs.semVersion }}","draft":false,"prerelease":false,"generate_release_notes":false}'
170170
171171
- name: Step-03 Publish to Nuget Org

GitVersion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
next-version: 3.0.1
1+
next-version: 4.0.0
22
tag-prefix: '[vV]'
33
mode: ContinuousDeployment
44
branches:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# <img src="https://github.com/NinjaRocks/DomainEvents/blob/master/ninja-icon-16.png" alt="ninja" style="width:30px;"/> DomainEvents v3.0.0
2-
[![NuGet version](https://badge.fury.io/nu/Dormito.DomainEvents.svg)](https://badge.fury.io/nu/Dormito.DomainEvents) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/NinjaRocks/DomainEvents/blob/master/License.md) [![CI](https://github.com/NinjaRocks/DomainEvents/actions/workflows/CI-Build.yml/badge.svg)](https://github.com/NinjaRocks/DomainEvents/actions/workflows/CI-Build.yml) [![GitHub Release](https://img.shields.io/github/v/release/ninjarocks/DomainEvents?logo=github&sort=semver)](https://github.com/ninjarocks/DomainEvents/releases/latest)
3-
[![CodeQL](https://github.com/NinjaRocks/DomainEvents/actions/workflows/codeql.yml/badge.svg)](https://github.com/NinjaRocks/DomainEvents/actions/workflows/codeql.yml) [![.Net 6.0](https://img.shields.io/badge/.Net%20-8.0-blue)](https://dotnet.microsoft.com/en-us/download/dotnet/8)
1+
# <img src="https://github.com/CodeShayk/DomainEvents/blob/master/ninja-icon-16.png" alt="ninja" style="width:30px;"/> DomainEvents v4.0.0
2+
[![NuGet version](https://badge.fury.io/nu/Dormito.DomainEvents.svg)](https://badge.fury.io/nu/Dormito.DomainEvents) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/CodeShayk/DomainEvents/blob/master/License.md) [![CI](https://github.com/CodeShayk/DomainEvents/actions/workflows/CI-Build.yml/badge.svg)](https://github.com/CodeShayk/DomainEvents/actions/workflows/CI-Build.yml) [![GitHub Release](https://img.shields.io/github/v/release/CodeShayk/DomainEvents?logo=github&sort=semver)](https://github.com/CodeShayk/DomainEvents/releases/latest)
3+
[![CodeQL](https://github.com/CodeShayk/DomainEvents/actions/workflows/codeql.yml/badge.svg)](https://github.com/CodeShayk/DomainEvents/actions/workflows/codeql.yml) [![.Net 9.0](https://img.shields.io/badge/.Net%20-9.0-blue)](https://dotnet.microsoft.com/en-us/download/dotnet/9)
44
## Library to help implement transactional events in domain bounded context.
55
Use domain events to explicitly implement side effects of changes within your domain. In other words, and using DDD terminology, use domain events to explicitly implement side effects across multiple aggregates.
66
### What is a Domain Event?

src/DomainEvents/DomainEvents.csproj

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<ImplicitUsings>disable</ImplicitUsings>
66
<Nullable>disable</Nullable>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
@@ -16,18 +16,22 @@
1616
<PackageLicenseFile>License.md</PackageLicenseFile>
1717
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
1818
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
19-
<Title>Dormito.DomainEvents</Title>
20-
<Authors>Tech Ninja Labs</Authors>
21-
<Company>Tech Ninja Labs</Company>
22-
<Product>Dormito</Product>
19+
<Title>DomainEvents</Title>
20+
<Authors>Code Shayk</Authors>
21+
<Company>Code Shayk</Company>
22+
<Product>DomainEvents</Product>
2323
<Description>.Net Library to implement transactional events in domain model.</Description>
24-
<Copyright>Copyright (c) 2024 Tech Ninja Labs</Copyright>
24+
<Copyright>Copyright (c) 2024 Code Shayk</Copyright>
2525
<PackageReadmeFile>README.md</PackageReadmeFile>
26-
<RepositoryUrl>https://github.com/TechNinjaLabs/DomainEvents</RepositoryUrl>
26+
<RepositoryUrl>https://github.com/CodeShayk/DomainEvents</RepositoryUrl>
2727
<RepositoryType>git</RepositoryType>
28-
<PackageTags>domain-events; domain events; .net8.0; c# domain events; domain pub/sub; event pub sub</PackageTags>
29-
<Version>3.0.1</Version>
28+
<PackageTags>domain-events; domain events; .net9.0; c# domain events; domain pub/sub; event pub sub</PackageTags>
29+
<Version>4.0.0</Version>
3030
<PackageIcon>ninja-icon-16.png</PackageIcon>
31+
<GenerateDocumentationFile>True</GenerateDocumentationFile>
32+
<PackageProjectUrl>https://github.com/CodeShayk/DomainEvents/wiki</PackageProjectUrl>
33+
<PackageReleaseNotes>Release v4.0.0
34+
- Targets .Net 9.0</PackageReleaseNotes>
3135
</PropertyGroup>
3236

3337
<ItemGroup>

test/DomainEvents.Tests/DomainEvents.Tests.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<IsPackable>false</IsPackable>
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
12-
<PackageReference Include="NUnit" Version="4.1.0" />
13-
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
14-
<PackageReference Include="NUnit.Analyzers" Version="4.1.0">
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
12+
<PackageReference Include="NUnit" Version="4.2.2" />
13+
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
14+
<PackageReference Include="NUnit.Analyzers" Version="4.4.0">
1515
<PrivateAssets>all</PrivateAssets>
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1717
</PackageReference>

0 commit comments

Comments
 (0)