Skip to content

Commit

Permalink
Increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
cristipufu committed Sep 1, 2024
1 parent 7cb7064 commit c58006e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 0.1.0

* Add `EnablePersistence` to persist events on disk before sending them to the server
* Add `EnableCrashReporting` to log application crashes, unhandled exceptions

## 0.0.9

* Fix net8 compatibility issues
* Use `System.Threading.Channels` to send events asynchronously
* Add `IsDebugMode` to `AptabaseOptions` (fixes Android detection + avoids reflection if specified by the consumer of the sdk)
* Add `DeviceModel` to system properties

## 0.0.8

* Use new session id format
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Instrument your apps with Aptabase, an Open Source, Privacy-First and, Simple An
Start by adding the Aptabase NuGet package to your .csproj:

```xml
<PackageReference Include="Aptabase.Maui" Version="0.0.9" />
<PackageReference Include="Aptabase.Maui" Version="0.1.0" />
```

## Usage
Expand All @@ -34,6 +34,8 @@ public static MauiApp CreateMauiApp()
#else
IsDebugMode = false,
#endif
EnableCrashReporting = true, // 👈 log app crashes, unhandled exceptions
EnablePersistence = true, // 👈 persist events on disk before sending them to the server
})
...
}
Expand Down
2 changes: 1 addition & 1 deletion src/Aptabase.Maui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<PackageId>Aptabase.Maui</PackageId>
<Version>0.0.9</Version>
<Version>0.1.0</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<TargetFrameworks>net8.0;net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks>
Expand Down
1 change: 0 additions & 1 deletion src/AptabasePersistentClient.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using DotNext.Threading.Channels;
using Microsoft.Extensions.Logging;
using Microsoft.Maui.Platform;
using System.Text;
using System.Text.Json;
using System.Threading.Channels;
Expand Down

0 comments on commit c58006e

Please sign in to comment.