Skip to content

Commit

Permalink
Migrate git repository urls
Browse files Browse the repository at this point in the history
Change-Id: I4a6debb65add5da8557a7652bc615f31281d7c42
  • Loading branch information
yangkx1024 committed Nov 28, 2023
1 parent c038731 commit 27bb117
Show file tree
Hide file tree
Showing 20 changed files with 43 additions and 43 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "mmkv"
version = "0.3.1"
version = "0.3.2"
edition = "2021"
authors = ["Kexuan Yang <kexuan.yang@gmail.com>"]
description = "Rust version of MMKV"
license = "MIT OR Apache-2.0"
repository = "https://github.com/yangkx1024/MMKV"
repository = "https://github.com/yangkx-1024/MMKV"
keywords = ["key-value", "mmkv"]
exclude = [
"android", "ios", "build_android.sh", "build_apple.sh"
Expand Down
2 changes: 1 addition & 1 deletion android/buildSrc/src/main/java/Configuration.kt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ object Configuration {
val licenceApache = "The Apache License, Version 2.0" to "http://www.apache.org/licenses/LICENSE-2.0.txt"
val licenceMit = "The MIT License" to "https://opensource.org/licenses/MIT"
val developer = "Kexuan Yang" to "kexuan.yang@gmail.com"
const val scmUrl = "https://github.com/yangkx1024/MMKV"
const val scmUrl = "https://github.com/yangkx-1024/MMKV"
}

object Deps {
Expand Down
2 changes: 1 addition & 1 deletion android/buildSrc/src/main/java/Version.kt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
const val version = "0.3.1"
const val version = "0.3.2"
Git LFS file not shown
Git LFS file not shown
4 changes: 2 additions & 2 deletions android/library-encrypt/src/debug/jniLibs/x86_64/libmmkv.so
Git LFS file not shown
4 changes: 2 additions & 2 deletions android/library-encrypt/src/main/jniLibs/arm64-v8a/libmmkv.so
Git LFS file not shown
Git LFS file not shown
4 changes: 2 additions & 2 deletions android/library-encrypt/src/main/jniLibs/x86_64/libmmkv.so
Git LFS file not shown
4 changes: 2 additions & 2 deletions android/library/src/debug/jniLibs/arm64-v8a/libmmkv.so
Git LFS file not shown
4 changes: 2 additions & 2 deletions android/library/src/debug/jniLibs/armeabi-v7a/libmmkv.so
Git LFS file not shown
2 changes: 1 addition & 1 deletion android/library/src/debug/jniLibs/x86_64/libmmkv.so
Git LFS file not shown
4 changes: 2 additions & 2 deletions android/library/src/main/jniLibs/arm64-v8a/libmmkv.so
Git LFS file not shown
4 changes: 2 additions & 2 deletions android/library/src/main/jniLibs/armeabi-v7a/libmmkv.so
Git LFS file not shown
4 changes: 2 additions & 2 deletions android/library/src/main/jniLibs/x86_64/libmmkv.so
Git LFS file not shown
16 changes: 8 additions & 8 deletions ios/MMKV/Sources/RustMMKV.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -10,40 +10,42 @@
<key>HeadersPath</key>
<string>Headers</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>libmmkv.a</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>BinaryPath</key>
<string>libmmkv.a</string>
<key>HeadersPath</key>
<string>Headers</string>
<key>LibraryIdentifier</key>
<string>macos-arm64_x86_64</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>libmmkv.a</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>macos</string>
<string>ios</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>libmmkv.a</string>
<key>HeadersPath</key>
<string>Headers</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>macos-arm64_x86_64</string>
<key>LibraryPath</key>
<string>libmmkv.a</string>
<key>SupportedArchitectures</key>
Expand All @@ -52,9 +54,7 @@
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
<string>macos</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
4 changes: 2 additions & 2 deletions ios/MMKV/Sources/RustMMKV.xcframework/ios-arm64/libmmkv.a
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
4 changes: 2 additions & 2 deletions proc_macro_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "mmkv-proc-macro-lib"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
authors = ["Kexuan Yang <kexuan.yang@gmail.com>"]
description = "Proc macro lib of Rust version of MMKV"
license = "MIT OR Apache-2.0"
repository = "https://github.com/yangkx1024/MMKV"
repository = "https://github.com/yangkx-1024/MMKV"
keywords = ["key-value", "mmkv", "macro"]

[lib]
Expand Down

0 comments on commit 27bb117

Please sign in to comment.