Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
marcprux committed Jul 3, 2024
1 parent c533d3d commit b36bfe6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ java_pid*.hprof
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
build/
DerivedData/
.android/
.kotlin/
*.moved-aside
*.pbxuser
!default.pbxuser
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.8.0

Released 2024-07-03

- Update the using the Kotlin 2 integrated compose compiler
- Bump androidx-compose-bom to 2024.06.00

## 0.7.0

Released 2024-05-25
Expand Down
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ let package = Package(
defaultLocalization: "en",
platforms: [.iOS(.v16), .macOS(.v13), .tvOS(.v16), .watchOS(.v9), .macCatalyst(.v16)],
products: [
.library(name: "SkipModel", targets: ["SkipModel"]),
.library(name: "SkipModel", type: .dynamic, targets: ["SkipModel"]),
],
dependencies: [
.package(url: "https://source.skip.tools/skip.git", from: "0.8.45"),
.package(url: "https://source.skip.tools/skip-foundation.git", from: "0.6.9"),
.package(url: "https://source.skip.tools/skip.git", from: "0.9.2"),
.package(url: "https://source.skip.tools/skip-foundation.git", from: "0.7.0"),
],
targets: [
.target(name: "SkipModel", dependencies: [.product(name: "SkipFoundation", package: "skip-foundation")], plugins: [.plugin(name: "skipstone", package: "skip")]),
Expand Down
2 changes: 1 addition & 1 deletion Sources/SkipModel/Skip/skip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ settings:
contents:
- block: 'create("libs")'
contents:
- 'version("androidx-compose-bom", "2024.05.00")'
- 'version("androidx-compose-bom", "2024.06.00")'
- 'library("androidx-compose-bom", "androidx.compose", "compose-bom").versionRef("androidx-compose-bom")'
- 'library("androidx-compose-runtime", "androidx.compose.runtime", "runtime").withoutVersion()'

Expand Down

0 comments on commit b36bfe6

Please sign in to comment.