Skip to content
Open
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
4 changes: 4 additions & 0 deletions PowerSync/PowerSync.Common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# PowerSync.Common Changelog

## 0.1.0

- Beta release.

## 0.0.11-alpha.1

- Implemented throttling for `Watch<T>` and `OnChange` (default 30ms).
Expand Down
7 changes: 2 additions & 5 deletions PowerSync/PowerSync.Common/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -58,4 +56,3 @@ _ = Task.Run(async () =>
}
}, cts.Token);
```

4 changes: 4 additions & 0 deletions PowerSync/PowerSync.Maui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
8 changes: 3 additions & 5 deletions PowerSync/PowerSync.Maui/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Loading