Update readme

This commit is contained in:
2025-10-27 19:15:04 +02:00
parent 882da1cb66
commit 01b53a6a39

View File

@@ -22,8 +22,6 @@ DataLiteCore provides an object-oriented API over the C interface, allowing deve
To add DataLiteCore to your project, use Swift Package Manager (SPM). To add DataLiteCore to your project, use Swift Package Manager (SPM).
> **Important:** The API of `DataLiteCore` 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.
@@ -43,7 +41,7 @@ import PackageDescription
let package = Package( let package = Package(
name: "YourProject", name: "YourProject",
dependencies: [ dependencies: [
.package(url: "https://github.com/angd-dev/data-lite-core.git", branch: "develop") .package(url: "https://github.com/angd-dev/data-lite-core.git", from: "1.0.0")
], ],
targets: [ targets: [
.target( .target(
@@ -58,7 +56,7 @@ let package = Package(
## Additional Resources ## Additional Resources
For more information and usage examples, see the [documentation](https://docs.angd.dev/?package=data-lite-core&version=develop). For more information and usage examples, see the [documentation](https://docs.angd.dev/?package=data-lite-core&version=1.0.0).
## License ## License