From 0f587530c0149ad601a4576fad112219cf372309 Mon Sep 17 00:00:00 2001 From: Ruben Bartelink Date: Mon, 13 Sep 2021 10:10:49 +0100 Subject: [PATCH] Release 3.0.2 --- CHANGELOG.md | 10 ++++++++-- README.md | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e64e6cc42..985c3faa2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,12 @@ The `Unreleased` section name is replaced by the expected version of next releas ### Removed ### Fixed -- Fix CI to stop emitting builds with incorrect `AssemblyVersion 1.0.0.0` (update MinVer to 2.5.0) + +## [3.0.1] - 2021-09-13 + +### Fixed + +- Fix CI to stop emitting builds with incorrect `AssemblyVersion 1.0.0.0` (updated MinVer to `2.5.0`) - Update global.json to use SDK version `5.0.200` @@ -610,7 +615,8 @@ The `Unreleased` section name is replaced by the expected version of next releas (For information pertaining to earlier releases, see release notes in https://github.com/jet/equinox/releases and/or can someone please add it!) -[Unreleased]: https://github.com/jet/equinox/compare/3.0.1...HEAD +[Unreleased]: https://github.com/jet/equinox/compare/3.0.2...HEAD +[3.0.2]: https://github.com/jet/equinox/compare/3.0.1...3.0.2 [3.0.1]: https://github.com/jet/equinox/compare/3.0.0...3.0.1 [3.0.0]: https://github.com/jet/equinox/compare/3.0.0-beta.4...3.0.0 [3.0.0-beta.4]: https://github.com/jet/equinox/compare/3.0.0-beta.3...3.0.0-beta.4 diff --git a/README.md b/README.md index b9a9703d7..239fddc67 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ _If you're looking to learn more about and/or discuss Event Sourcing and it's my # Currently Supported Data Stores -- [Azure Cosmos DB](https://docs.microsoft.com/en-us/azure/cosmos-db): contains some fragments of code dating back to 2016, however [the storage model](DOCUMENTATION.md#Cosmos-Storage-Model) was arrived at based on intensive benchmarking (squash-merged in [#42](https://github.com/jet/equinox/pull/42)). The current V2 release line is being used extensively in production systems. The upcoming V3 release will move to the V3 or V4 CosmosDB SDK and provides support for significantly more efficient packing of events ([storing events in the 'Tip'](https://github.com/jet/equinox/pull/251)). +- [Azure Cosmos DB](https://docs.microsoft.com/en-us/azure/cosmos-db): contains some fragments of code dating back to 2016, however [the storage model](DOCUMENTATION.md#Cosmos-Storage-Model) was arrived at based on intensive benchmarking (squash-merged in [#42](https://github.com/jet/equinox/pull/42)). The V2 and V3 release lines are being used in production systems. (The V3 release provides support for significantly more efficient packing of events ([storing events in the 'Tip'](https://github.com/jet/equinox/pull/251))). - [EventStoreDB](https://eventstore.org/): this codebase itself has been in production since 2017 (see commit history), with key elements dating back to approx 2016. - [SqlStreamStore](https://github.com/SQLStreamStore/SQLStreamStore): bindings for the powerful and widely used SQL-backed Event Storage system, derived from the EventStoreDB adapter. [See SqlStreamStore docs](https://sqlstreamstore.readthedocs.io/en/latest/#introduction). :pray: [@rajivhost](https://github.com/rajivhost) - `MemoryStore`: In-memory store (volatile, for unit or integration test purposes). Fulfils the full contract Equinox imposes on a store, but without I/O costs [(it's ~100 LOC wrapping a `ConcurrentDictionary`)](https://github.com/jet/equinox/blob/master/src/Equinox.MemoryStore/MemoryStore.fs). Also enables [take serialization/deserialization out of the picture](https://github.com/jet/FsCodec#boxcodec) in tests.