Skip to content

Commit dab1751

Browse files
committed
fix: versionize
1 parent 3382c73 commit dab1751

2 files changed

Lines changed: 15 additions & 2 deletions

File tree

.github/workflows/versionize-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,5 @@ jobs:
4545
with:
4646
github_token: ${{ secrets.PAT }}
4747
branch: ${{ github.ref }}
48-
tags: true
48+
tags: true
49+
force: true

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# UsbSerialForMacOS
22

3+
34
[![Build](https://github.com/akinbender/UsbSerialForMacOS/actions/workflows/build.yml/badge.svg)](https://github.com/akinbender/UsbSerialForMacOS/actions/workflows/build.yml)
5+
[![NuGet](https://img.shields.io/nuget/v/UsbSerialForMacOS.svg?label=NuGet&logo=nuget)](https://www.nuget.org/packages/UsbSerialForMacOS/)
46

57
**UsbSerialForMacOS** is a .NET binding for a native Swift library that enables serial port communication on macOS and Mac Catalyst.
68
It allows .NET MAUI and .NET 8+ apps to enumerate, open, read from, and write to serial devices (such as USB-to-serial adapters and 3D printers) using a simple C# API.
@@ -27,4 +29,14 @@ if (ports.Length > 0)
2729
bool opened = manager.Open(ports[0], 115200);
2830
// Write/read as needed
2931
manager.Close();
30-
}
32+
}
33+
```
34+
35+
**Version Support**
36+
37+
| Platform | Target Framework | Architectures | Minimum macOS Version |
38+
|-------------- |----------------------|-----------------------|-----------------------|
39+
| macOS | net8.0-macos | x64, arm64 | 15.0+ |
40+
| Mac Catalyst | net8.0-maccatalyst | x64, arm64 | 18.0+ |
41+
42+
> **.NET 8.0 or higher is required. Native libraries are included for both macOS and Mac Catalyst.**

0 commit comments

Comments
 (0)