Skip to content

Commit

Permalink
chore: Upgrade minor version
Browse files Browse the repository at this point in the history
  • Loading branch information
osugikoji committed Mar 21, 2023
1 parent 5225023 commit 53e3d0e
Show file tree
Hide file tree
Showing 12 changed files with 10 additions and 54 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
Expand Down
Binary file removed YChat-1.1.0.zip
Binary file not shown.
Binary file added YChat-1.1.1.zip
Binary file not shown.
16 changes: 6 additions & 10 deletions YChat.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,34 +5,30 @@
<key>AvailableLibraries</key>
<array>
<dict>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-x86_64-simulator</string>
<key>LibraryPath</key>
<string>YChat.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>YChat.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>x86_64</string>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file modified YChat.xcframework/ios-arm64/YChat.framework/YChat
Binary file not shown.

This file was deleted.

Binary file not shown.
Binary file modified YChat.xcframework/ios-x86_64-simulator/YChat.framework/YChat
Binary file not shown.

This file was deleted.

Binary file not shown.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/spm-tasks.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ tasks.register<Delete>("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)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 53e3d0e

Please sign in to comment.