diff --git a/PowerSync/PowerSync.Common/CHANGELOG.md b/PowerSync/PowerSync.Common/CHANGELOG.md index a7c731e..609492e 100644 --- a/PowerSync/PowerSync.Common/CHANGELOG.md +++ b/PowerSync/PowerSync.Common/CHANGELOG.md @@ -1,5 +1,9 @@ # PowerSync.Common Changelog +## 0.1.0 + +- Beta release. + ## 0.0.11-alpha.1 - Implemented throttling for `Watch` and `OnChange` (default 30ms). diff --git a/PowerSync/PowerSync.Common/README.md b/PowerSync/PowerSync.Common/README.md index 89cd3d2..9526ecd 100644 --- a/PowerSync/PowerSync.Common/README.md +++ b/PowerSync/PowerSync.Common/README.md @@ -4,16 +4,14 @@ This package contains a .NET implementation of a PowerSync database connector an ## ⚠️ Project Status & Release Note -This package is currently in an alpha state, intended strictly for testing. Expect breaking changes and instability as development continues. - -Do not rely on this package for production use. +This package is in beta and is considered ready for production use for tested use cases. See our feature status definitions [here](https://docs.powersync.com/resources/feature-status). ## Installation This package is published on [NuGet](https://www.nuget.org/packages/PowerSync.Common). ```bash -dotnet add package PowerSync.Common --prerelease +dotnet add package PowerSync.Common ``` ## Usage @@ -58,4 +56,3 @@ _ = Task.Run(async () => } }, cts.Token); ``` - diff --git a/PowerSync/PowerSync.Maui/CHANGELOG.md b/PowerSync/PowerSync.Maui/CHANGELOG.md index 594783f..ce36f23 100644 --- a/PowerSync/PowerSync.Maui/CHANGELOG.md +++ b/PowerSync/PowerSync.Maui/CHANGELOG.md @@ -1,5 +1,9 @@ # PowerSync.Maui Changelog +## 0.1.0 + +- Beta release. + ## 0.0.9-alpha.1 - Upstream PowerSync.Common version bump (See Powersync.Common changelog 0.0.11-alpha.1 for more information) diff --git a/PowerSync/PowerSync.Maui/README.md b/PowerSync/PowerSync.Maui/README.md index 6dc52c3..bc75882 100644 --- a/PowerSync/PowerSync.Maui/README.md +++ b/PowerSync/PowerSync.Maui/README.md @@ -4,17 +4,15 @@ This package provides .NET Multi-platform App UI (MAUI) integration for PowerSyn ## ⚠️ Project Status & Release Note -This package is currently in an alpha state, intended strictly for testing. Expect breaking changes and instability as development continues. - -Do not rely on this package for production use. +This package is in beta and is considered ready for production use for tested use cases. See our feature status definitions [here](https://docs.powersync.com/resources/feature-status). ## Installation This package is published on [NuGet](https://www.nuget.org/packages/PowerSync.Maui) and requires PowerSync.Common to also be installed. ```bash -dotnet add package PowerSync.Maui --prerelease -dotnet add package PowerSync.Common --prerelease +dotnet add package PowerSync.Maui +dotnet add package PowerSync.Common ``` ## Usage diff --git a/README.md b/README.md index 053efd6..f71ef32 100644 --- a/README.md +++ b/README.md @@ -146,5 +146,5 @@ RUN_PERFORMANCE_TESTS=true dotnet test -v n --framework net8.0 --filter "Categor ## Using the PowerSync.Common package in your project ```bash -dotnet add package PowerSync.Common --prerelease +dotnet add package PowerSync.Common ```