diff --git a/docs/release-notes/v0-10.md b/docs/release-notes/v0-10.md index 0156f20dd..47f2c7ca5 100644 --- a/docs/release-notes/v0-10.md +++ b/docs/release-notes/v0-10.md @@ -1,5 +1,30 @@ # v0.10 +## v0.10.9 + +### Improvements + +- `InMemory` and `Sqlite` data base features were not working under ARM + processors, fixed +- Automatic schema update is removed from `Sqlite` database because + `Microsoft.Data.Sqlite.Core` does not support `SchemaUpdate` +- `autoExportSchema` parameter is introduced to `Sqlite` database with default + value `true` to use automatic schema for development databases which clears + data each time your application runs. You may set it to false if you want your + data to retain. +- `Client.Send` now has option to disable ensure success status code check to + return error response data + +### Library Upgrades + +| Package | Old Version | New Version | +| ----------------------------- | ----------- | ----------- | +| Microsoft.Data.Sqlite.Core | new | 8.0.7 | +| NHibernate.Extensions.Sqlite | new | 8.0.8 | +| SQLitePCLRaw.bundle_e_sqlite3 | new | 2.1.8 | +| System.Data.SQLite | 1.0.118 | removed | + + ## v0.10.8 ### Library Upgrades diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 56c6334a6..a41217a23 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -10,7 +10,7 @@ Baked (Objects) - 0.10.8 + 0.10.9 Mouseless Mouseless Copyright (c) 2024 Mouseless diff --git a/unreleased.md b/unreleased.md index 5dce74511..79e701b84 100644 --- a/unreleased.md +++ b/unreleased.md @@ -1,23 +1 @@ # Unreleased - -## Improvements - -- `InMemory` and `Sqlite` data base features were not working under ARM - processors, fixed -- Automatic schema update is removed from `Sqlite` database because - `Microsoft.Data.Sqlite.Core` does not support `SchemaUpdate` -- `autoExportSchema` parameter is introduced to `Sqlite` database with default - value `true` to use automatic schema for development databases which clears - data each time your application runs. You may set it to false if you want your - data to retain. -- `Client.Send` now has option to disable ensure success status code check to - return error response data - -## Library Upgrades - -| Package | Old Version | New Version | -| ----------------------------- | ----------- | ----------- | -| Microsoft.Data.Sqlite.Core | new | 8.0.7 | -| NHibernate.Extensions.Sqlite | new | 8.0.8 | -| SQLitePCLRaw.bundle_e_sqlite3 | new | 2.1.8 | -| System.Data.SQLite | 1.0.118 | removed |