Update readme

This commit is contained in:
2025-10-27 20:23:49 +02:00
parent 7d1bb97aca
commit 66a77d008a

View File

@@ -17,8 +17,6 @@ It is designed to be used alongside DataLiteCore, which manages low-level intera
To add DataLiteCoder to your project, use Swift Package Manager (SPM). To add DataLiteCoder to your project, use Swift Package Manager (SPM).
> **Important:** The API of `DataLiteCoder` is currently unstable and may change without notice. It is **strongly recommended** to pin the dependency to a specific commit to ensure compatibility and avoid unexpected breakage when the API evolves.
### Adding to an Xcode Project ### Adding to an Xcode Project
1. Open your project in Xcode. 1. Open your project in Xcode.
@@ -38,7 +36,7 @@ import PackageDescription
let package = Package( let package = Package(
name: "YourProject", name: "YourProject",
dependencies: [ dependencies: [
.package(url: "https://github.com/angd-dev/data-lite-coder.git", branch: "develop") .package(url: "https://github.com/angd-dev/data-lite-coder.git", from: "1.0.0")
], ],
targets: [ targets: [
.target( .target(
@@ -53,7 +51,7 @@ let package = Package(
## Additional Resources ## Additional Resources
For more information and usage examples, see the [documentation](https://docs.angd.dev/?package=data-lite-coder&version=develop). For more information and usage examples, see the [documentation](https://docs.angd.dev/?package=data-lite-coder&version=1.0.0).
## License ## License