Skip to content

Commit 41bbd08

Browse files
committed
increment version
1 parent 50d1347 commit 41bbd08

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@
44

55
Supports `Event` and `Snapshot` storage providers like EventStore/Redis or SQL Server. Built with dependency injection in mind and seamlessly integrates with AspNetCore.
66

7-
## Give a star :star: if you appreciate the effort
7+
### Give a star :star: if you appreciate the effort
88

99
## What is Event Sourcing?
1010

1111
> Use an append-only store to record the full series of events that describe actions taken on data in a domain, rather than storing just the current state.
1212
1313
Start here [https://dasith.me/2016/12/02/event-sourcing-examined-part-1-of-3/](https://dasith.me/2016/12/02/event-sourcing-examined-part-1-of-3/)
1414

15-
## What does NEventLite solve? :goal_net:
15+
## :goal_net: What does NEventLite solve?
1616
NEventLite makes it easier to implement the event sourcing pattern in your .NET project. The library is opinionated and introduces some patterns to manage the life cycle of your [Aggregates](https://martinfowler.com/bliki/DDD_Aggregate.html) in an event sourced system. It will manage Creating, Loading, Mutating and Persisting Aggregates and Events.
1717

18-
## What doesn't it solve? :warning:
18+
## :warning: What doesn't it solve?
1919

2020
NEventLite is **not a framework** that manages your application end to end. It doesn't enforce ports and adapters pattern or any of the application level concerns. The aim is to do one thing (Manage aggregate lifecycle) and do that well. If you need to implement command and event handlers you can have a look at something like [SimpleMediator](https://github.com/dasiths/SimpleMediator) or [Brighter](https://github.com/BrighterCommand/Brighter) and NEventLite will complement them nicely.
2121

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.0.{build}
1+
version: 2.1.{build}
22
pull_requests:
33
do_not_increment_build_number: true
44
branches:

0 commit comments

Comments
 (0)