Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Nothing yet.

## [10.0.1] - 2026-01-23

### Fixed

- NuGet upgrade.

## [10.0.0] - 2025-12-08

### Added
Expand All @@ -17,5 +23,6 @@ Nothing yet.
- Implemented Command Query Responsibility Segregation pattern, with `CommandBus` and `QueryBus`.
- Added `DependencyInjectionExtensions`.

[unreleased]: https://github.com/Logitar/EventSourcing/compare/v10.0.0...HEAD
[unreleased]: https://github.com/Logitar/EventSourcing/compare/v10.0.1...HEAD
[10.0.1]: https://github.com/Logitar/EventSourcing/compare/v10.0.0...v10.0.1
[10.0.0]: https://github.com/Logitar/EventSourcing/releases/tag/v10.0.0
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2025 Logitar
Copyright (c) 2026 Logitar

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion lib/Logitar.CQRS/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2025 Logitar
Copyright (c) 2026 Logitar

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
16 changes: 8 additions & 8 deletions lib/Logitar.CQRS/Logitar.CQRS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@
<Authors>Francis Pion</Authors>
<Product>Logitar.NET</Product>
<Description>Provides an implementation of the Command Query Responsibility Segregation pattern.</Description>
<Copyright>© 2025 Logitar All Rights Reserved.</Copyright>
<Copyright>© 2026 Logitar All Rights Reserved.</Copyright>
<PackageIcon>logitar.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Logitar/CQRS</RepositoryUrl>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.1.0</AssemblyVersion>
<FileVersion>$(AssemblyVersion)</FileVersion>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Version>10.0.0</Version>
<Version>10.0.1</Version>
<NeutralLanguage>en-CA</NeutralLanguage>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<PackageReleaseNotes>Initial release.</PackageReleaseNotes>
<PackageReleaseNotes>NuGet upgrade.</PackageReleaseNotes>
<PackageTags>logitar net framework cqrs command query responsibility segregation</PackageTags>
<PackageProjectUrl>https://github.com/Logitar/CQRS/tree/main/lib/Logitar.CQRS</PackageProjectUrl>
</PropertyGroup>
Expand All @@ -35,10 +35,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Logitar" Version="10.1.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0" />
<PackageReference Include="Logitar" Version="10.1.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.2" />
</ItemGroup>

<ItemGroup>
Expand Down