Skip to content

Commit 741102d

Browse files
authored
Merge pull request #6 from NinjaRocks/release/v2.0.0
Upgrade to .Net 6.0
2 parents 0a3b5b8 + 62d58c6 commit 741102d

File tree

7 files changed

+12
-14
lines changed

7 files changed

+12
-14
lines changed

GitVersion.yml

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

License.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2022 Ninja Sha!4H
3+
Copyright (c) 2023 Ninja Sha!4H
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Ninja.DomainEvents.sln

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ EndProject
1414
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".misc", ".misc", "{D4BE57FE-11E1-4979-8145-F10C02CBC285}"
1515
ProjectSection(SolutionItems) = preProject
1616
.gitignore = .gitignore
17+
GitVersion.yml = GitVersion.yml
1718
License.md = License.md
1819
nuget.config = nuget.config
1920
README.md = README.md
@@ -23,8 +24,6 @@ EndProject
2324
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "github", "github", "{FA9A86C9-07AD-4D6F-958B-8EBE227F8765}"
2425
ProjectSection(SolutionItems) = preProject
2526
.github\workflows\CI-Build.yml = .github\workflows\CI-Build.yml
26-
.github\workflows\codeql.yml = .github\workflows\codeql.yml
27-
GitVersion.yml = GitVersion.yml
2827
EndProjectSection
2928
EndProject
3029
Global

README.md

Lines changed: 2 additions & 2 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 v1.0.6
1+
# <img src="https://github.com/NinjaRocks/DomainEvents/blob/master/ninja-icon-16.png" alt="ninja" style="width:30px;"/> DomainEvents v2.0.0
22
[![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 Stardard](https://img.shields.io/badge/.Net%20Standard-2.1-blue)](https://dotnet.microsoft.com/en-us/download/dotnet/2.1)
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-6.0-blue)](https://dotnet.microsoft.com/en-us/download/dotnet/6)
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
55
<ImplicitUsings>disable</ImplicitUsings>
66
<Nullable>disable</Nullable>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
@@ -21,12 +21,12 @@
2121
<Company>Ninja Corp</Company>
2222
<Product>DomainEvents</Product>
2323
<Description>.Net Library to implement transactional events in domain model.</Description>
24-
<Copyright>Copyright (c) 2022 Ninja Sha!4H</Copyright>
24+
<Copyright>Copyright (c) 2023 Ninja Sha!4H</Copyright>
2525
<PackageReadmeFile>README.md</PackageReadmeFile>
2626
<RepositoryUrl>https://github.com/NinjaRocks/DomainEvents</RepositoryUrl>
2727
<RepositoryType>git</RepositoryType>
2828
<PackageTags>domain-events; domain events; .net6.0; c# domain events; domain pub/sub; event pub sub</PackageTags>
29-
<Version>1.0.6</Version>
29+
<Version>2.0.0</Version>
3030
<PackageIcon>ninja-icon-16.png</PackageIcon>
3131
</PropertyGroup>
3232

src/DomainEvents/assemblyinfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
1616
[assembly: System.Reflection.AssemblyCopyrightAttribute("2022")]
1717
[assembly: System.Reflection.AssemblyDescriptionAttribute(".Net Library to implement transactional events in domain model.")]
18-
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.6.0")]
19-
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.6")]
18+
[assembly: System.Reflection.AssemblyFileVersionAttribute("2.0.0.0")]
19+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("2.0.0")]
2020
[assembly: System.Reflection.AssemblyProductAttribute("DomainEvents")]
2121
[assembly: System.Reflection.AssemblyTitleAttribute("Dormito")]
22-
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.6.0")]
22+
[assembly: System.Reflection.AssemblyVersionAttribute("2.0.0.0")]
2323
[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/NinjaRocks/Ninja.DomainEvents")]
2424

2525
// Generated by the MSBuild WriteCodeFragment class.

version.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
32
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
43
"cloudBuild": {
54
"setVersionVariables": true,
@@ -18,5 +17,5 @@
1817
},
1918
"inherit": false,
2019
"publicReleaseRefSpec": [ "^refs/heads/master$" ],
21-
"version": "1.0.1"
20+
"version": "2.0.0"
2221
}

0 commit comments

Comments
 (0)