diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index df1a16c..7a412ec 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -11,7 +11,7 @@ env:
jobs:
publish-maven:
name: Publish to Maven
- runs-on: ubuntu-latest
+ runs-on: macos-11
steps:
- name: Checkout
uses: actions/checkout@v3
@@ -31,7 +31,7 @@ jobs:
run: chmod +x gradlew
- name: Publish to Repository
- run: ./gradlew :ychat:clean publish
+ run: ./gradlew clean publish --no-parallel --stacktrace
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_USERNAME }}
diff --git a/YChat-1.1.0.zip b/YChat-1.1.0.zip
deleted file mode 100644
index 01c898c..0000000
Binary files a/YChat-1.1.0.zip and /dev/null differ
diff --git a/YChat-1.1.1.zip b/YChat-1.1.1.zip
new file mode 100644
index 0000000..7c039ac
Binary files /dev/null and b/YChat-1.1.1.zip differ
diff --git a/YChat.xcframework/Info.plist b/YChat.xcframework/Info.plist
index b1ef1ce..36ed4d8 100644
--- a/YChat.xcframework/Info.plist
+++ b/YChat.xcframework/Info.plist
@@ -5,34 +5,30 @@
AvailableLibraries
- DebugSymbolsPath
- dSYMs
LibraryIdentifier
- ios-arm64
+ ios-x86_64-simulator
LibraryPath
YChat.framework
SupportedArchitectures
- arm64
+ x86_64
SupportedPlatform
ios
+ SupportedPlatformVariant
+ simulator
- DebugSymbolsPath
- dSYMs
LibraryIdentifier
- ios-x86_64-simulator
+ ios-arm64
LibraryPath
YChat.framework
SupportedArchitectures
- x86_64
+ arm64
SupportedPlatform
ios
- SupportedPlatformVariant
- simulator
CFBundlePackageType
diff --git a/YChat.xcframework/ios-arm64/YChat.framework/YChat b/YChat.xcframework/ios-arm64/YChat.framework/YChat
index 0992ffd..67e9d46 100755
Binary files a/YChat.xcframework/ios-arm64/YChat.framework/YChat and b/YChat.xcframework/ios-arm64/YChat.framework/YChat differ
diff --git a/YChat.xcframework/ios-arm64/dSYMs/YChat.framework.dSYM/Contents/Info.plist b/YChat.xcframework/ios-arm64/dSYMs/YChat.framework.dSYM/Contents/Info.plist
deleted file mode 100644
index fa99c83..0000000
--- a/YChat.xcframework/ios-arm64/dSYMs/YChat.framework.dSYM/Contents/Info.plist
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- English
- CFBundleIdentifier
- com.apple.xcode.dsym.co.yml.ychat.YChat
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundlePackageType
- dSYM
- CFBundleSignature
- ????
- CFBundleShortVersionString
- 1.0
- CFBundleVersion
- 1
-
-
diff --git a/YChat.xcframework/ios-arm64/dSYMs/YChat.framework.dSYM/Contents/Resources/DWARF/YChat b/YChat.xcframework/ios-arm64/dSYMs/YChat.framework.dSYM/Contents/Resources/DWARF/YChat
deleted file mode 100644
index 58b1875..0000000
Binary files a/YChat.xcframework/ios-arm64/dSYMs/YChat.framework.dSYM/Contents/Resources/DWARF/YChat and /dev/null differ
diff --git a/YChat.xcframework/ios-x86_64-simulator/YChat.framework/YChat b/YChat.xcframework/ios-x86_64-simulator/YChat.framework/YChat
index 82e7d13..49c3dc1 100755
Binary files a/YChat.xcframework/ios-x86_64-simulator/YChat.framework/YChat and b/YChat.xcframework/ios-x86_64-simulator/YChat.framework/YChat differ
diff --git a/YChat.xcframework/ios-x86_64-simulator/dSYMs/YChat.framework.dSYM/Contents/Info.plist b/YChat.xcframework/ios-x86_64-simulator/dSYMs/YChat.framework.dSYM/Contents/Info.plist
deleted file mode 100644
index fa99c83..0000000
--- a/YChat.xcframework/ios-x86_64-simulator/dSYMs/YChat.framework.dSYM/Contents/Info.plist
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- English
- CFBundleIdentifier
- com.apple.xcode.dsym.co.yml.ychat.YChat
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundlePackageType
- dSYM
- CFBundleSignature
- ????
- CFBundleShortVersionString
- 1.0
- CFBundleVersion
- 1
-
-
diff --git a/YChat.xcframework/ios-x86_64-simulator/dSYMs/YChat.framework.dSYM/Contents/Resources/DWARF/YChat b/YChat.xcframework/ios-x86_64-simulator/dSYMs/YChat.framework.dSYM/Contents/Resources/DWARF/YChat
deleted file mode 100644
index 70230b4..0000000
Binary files a/YChat.xcframework/ios-x86_64-simulator/dSYMs/YChat.framework.dSYM/Contents/Resources/DWARF/YChat and /dev/null differ
diff --git a/buildSrc/src/main/kotlin/spm-tasks.gradle.kts b/buildSrc/src/main/kotlin/spm-tasks.gradle.kts
index 4809dcf..d93f3e0 100644
--- a/buildSrc/src/main/kotlin/spm-tasks.gradle.kts
+++ b/buildSrc/src/main/kotlin/spm-tasks.gradle.kts
@@ -21,7 +21,7 @@ tasks.register("updateSwiftPackage") {
description = "Updates the Swift package by removing outdated files and running the `createSwiftPackage` task."
doFirst {
rootDir.listFiles { file ->
- val iosLibraryName = properties["library.ios.name"]
+ val iosLibraryName = properties["IOS_NAME"]
val fileName = file.name
if (fileName.startsWith("$iosLibraryName-") && fileName.endsWith(".zip")) {
delete(file)
diff --git a/gradle.properties b/gradle.properties
index a17be81..8388d54 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -11,7 +11,7 @@ kotlin.mpp.enableCInteropCommonization=true
# Lib
GROUP=co.yml
POM_ARTIFACT_ID=ychat
-VERSION_NAME=1.1.0
+VERSION_NAME=1.1.1
IOS_NAME=YChat
# OSS