Skip to content

Commit 346695d

Browse files
authored
Bump androidx-compose-bom dependency from 2025.09.01 to 2025.10.01 (#17)
1 parent 65e19ee commit 346695d

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,28 @@ Model object observation for [Skip Lite](https://skip.tools) transpiled Swift. P
44

55
See what API is included [here](#api-support).
66

7+
## Setup
8+
9+
To include this framework in your project, add the following
10+
dependency to your `Package.swift` file:
11+
12+
```swift
13+
let package = Package(
14+
name: "my-package",
15+
products: [
16+
.library(name: "MyProduct", targets: ["MyTarget"]),
17+
],
18+
dependencies: [
19+
.package(url: "https://source.skip.tools/skip-model.git", from: "1.0.0"),
20+
],
21+
targets: [
22+
.target(name: "MyTarget", dependencies: [
23+
.product(name: "SkipModel", package: "skip-model")
24+
])
25+
]
26+
)
27+
```
28+
729
## About
830

931
SkipModel vends the `skip.model` Kotlin package. This package contains `Observable` and `ObservableObject` interfaces, representing the two core protocols that SwiftUI uses to observe changes to model objects. It also includes limited `Publisher` support.

Sources/SkipModel/Skip/skip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ settings:
1212
contents:
1313
- block: 'create("libs")'
1414
contents:
15-
- 'version("androidx-compose-bom", "2025.09.01")'
15+
- 'version("androidx-compose-bom", "2025.10.01")'
1616
- 'library("androidx-compose-bom", "androidx.compose", "compose-bom").versionRef("androidx-compose-bom")'
1717
- 'library("androidx-compose-runtime", "androidx.compose.runtime", "runtime").withoutVersion()'
1818

0 commit comments

Comments
 (0)