File tree 3 files changed +8
-0
lines changed
3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/ ) , and this
6
6
project adheres to [ Semantic Versioning] ( https://semver.org/ ) .
7
7
8
+ ## [ Unreleased]
9
+ ### Changed
10
+ - Add ` watchosDeviceArm64 ` target (#137 )
11
+
8
12
## [ 0.7.0] - 2023-02-25
9
13
### Changed
10
14
- Add support for linuxArm64 (#134 )
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ kotlin {
44
44
watchosX86()
45
45
watchosX64()
46
46
watchosSimulatorArm64()
47
+ watchosDeviceArm64()
47
48
tvosArm64()
48
49
tvosX64()
49
50
tvosSimulatorArm64()
@@ -120,6 +121,8 @@ kotlin {
120
121
val watchosX86Test by getting { dependsOn(apple32Test) }
121
122
val watchosSimulatorArm64Main by getting { dependsOn(apple64Main) }
122
123
val watchosSimulatorArm64Test by getting { dependsOn(apple64Test) }
124
+ val watchosDeviceArm64Main by getting { dependsOn(apple64Main) }
125
+ val watchosDeviceArm64Test by getting { dependsOn(apple64Test) }
123
126
val tvosArm64Main by getting { dependsOn(apple64Main) }
124
127
val tvosArm64Test by getting { dependsOn(apple64Test) }
125
128
val tvosX64Main by getting { dependsOn(apple64Main) }
Original file line number Diff line number Diff line change @@ -159,6 +159,7 @@ tasks.register('publishMac') {
159
159
dependsOn ' publishWatchosArm32PublicationToMavenRepository'
160
160
dependsOn ' publishWatchosArm64PublicationToMavenRepository'
161
161
dependsOn ' publishWatchosSimulatorArm64PublicationToMavenRepository'
162
+ dependsOn ' publishWatchosDeviceArm64PublicationToMavenRepository'
162
163
dependsOn ' publishWatchosX64PublicationToMavenRepository'
163
164
dependsOn ' publishWatchosX86PublicationToMavenRepository'
164
165
dependsOn ' publishMacosArm64PublicationToMavenRepository'
You can’t perform that action at this time.
0 commit comments