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
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ root = true
# All files
[*]
indent_style = space
guidelines = 100, 160

# XML project files
[*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}]
Expand Down
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.1.2] - 2026-02-15

### Fixed

- EventBus HandleAsync method is now public.

## [10.1.1] - 2026-01-23

### Fixed
Expand Down Expand Up @@ -198,7 +204,8 @@ There are so many changes in this version that I may have missed some.
- Marked old TypeExtensions as obsolete.
- Refactored AggregateRoot.

[unreleased]: https://github.com/Logitar/EventSourcing/compare/v10.1.1...HEAD
[unreleased]: https://github.com/Logitar/EventSourcing/compare/v10.1.2...HEAD
[10.1.2]: https://github.com/Logitar/EventSourcing/compare/v10.1.1...v10.1.2
[10.1.1]: https://github.com/Logitar/EventSourcing/compare/v10.1.0...v10.1.1
[10.1.0]: https://github.com/Logitar/EventSourcing/compare/v10.0.0...v10.1.0
[10.0.0]: https://github.com/Logitar/EventSourcing/compare/v7.0.2...v10.0.0
Expand Down
2 changes: 1 addition & 1 deletion lib/Logitar.EventSourcing.Infrastructure/EventBus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public EventBus(IServiceProvider serviceProvider)
/// <param name="event">The event to publish.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>The asynchronous operation.</returns>
public async Task PublishAsync(IEvent @event, CancellationToken cancellationToken)
public virtual async Task PublishAsync(IEvent @event, CancellationToken cancellationToken)
{
IReadOnlyCollection<object> handlers = await GetHandlersAsync(@event, cancellationToken);
if (handlers.Count > 0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Logitar/EventSourcing</RepositoryUrl>
<AssemblyVersion>10.1.1.0</AssemblyVersion>
<AssemblyVersion>10.1.2.0</AssemblyVersion>
<FileVersion>$(AssemblyVersion)</FileVersion>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Version>10.1.1</Version>
<Version>10.1.2</Version>
<NeutralLanguage>en-CA</NeutralLanguage>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<PackageReleaseNotes>NuGet and LICENSE year upgrade.</PackageReleaseNotes>
<PackageReleaseNotes>EventBus HandleAsync method is now public.</PackageReleaseNotes>
<PackageTags>logitar net framework event sourcing infrastructure</PackageTags>
<PackageProjectUrl>https://github.com/Logitar/EventSourcing/tree/main/lib/Logitar.EventSourcing.Infrastructure</PackageProjectUrl>
</PropertyGroup>
Expand Down