diff --git a/go/libkb/version.go b/go/libkb/version.go index 8da0186c846b..24ee7899e6c1 100644 --- a/go/libkb/version.go +++ b/go/libkb/version.go @@ -4,4 +4,4 @@ package libkb // Version is the current version (should be MAJOR.MINOR.PATCH) -const Version = "6.5.2" +const Version = "6.5.4" diff --git a/osx/Fuse/README.md b/osx/Fuse/README.md index 29b4ed20883a..bc97725d5533 100644 --- a/osx/Fuse/README.md +++ b/osx/Fuse/README.md @@ -49,12 +49,14 @@ which you can submit for PR. This bundle is included in the KeybaseInstaller.app, so you'll need to build a new installer, see [Building the Installer](/osx/Scripts/README.md). -Versioning can be tricky here, here are some tips from last time: +**Versioning can be tricky here, here are some tips from last time** - Build against the newest macOS SDK - Specify an old build target (like 12.3) - Manually fixup Info.plist for the extension, since the Fuse build script puts the wrong values in for the minimum version and kext dependencies. -- Make sure the name in the Info.plist doesn't have a version number after it. + The key here is just to look at the commit from last time, and try to mimic the amount of changes to the Info.plist. +- Make sure the name in the Info.plist doesn't have a version number after it. The Fuse stuff looks up the name without + a version number. - `sudo kmutil log show` is a great way to see what is happening. ### Manual Install diff --git a/osx/Fuse/build.sh b/osx/Fuse/build.sh index 6f9fc42dee09..279cf75bbf54 100755 --- a/osx/Fuse/build.sh +++ b/osx/Fuse/build.sh @@ -8,9 +8,9 @@ cd "$dir" rm -rf osxfuse macfuse version=${VERSION:?"Need to set VERSION for Fuse"} -if [ "$version" = "4.8.2" ]; then - tar -xjf ~/Downloads/macfuse-4.8.2-src-mike.tgz - mv macfuse-4.8.2-src macfuse +if [ "$version" = "5.0.6" ]; then + tar -xjf ~/Downloads/macfuse-5.0.6-src-mike.tgz + #mv macfuse-5.0.6-src-mike macfuse else echo "Unsupported VERSION" exit 1 @@ -24,14 +24,14 @@ rm -rf /tmp/kbfuse* cd macfuse # If you get an error compiling you might have to run `brew link gettext --force` (see https://github.com/osxfuse/osxfuse/issues/149). # use 12.3 SDK (-s) and set deployment target 12.3 (-d). Build for macOS 12 kernel, and support up to Darwin 23 (macOS 14). -./build.sh -v 5 -t filesystembundle -- -s 15.0 -d 12.3 --kext="12,15.0,24" --kext="15->12" --kext="14->12" --kext="13->12" --code-sign-identity="Developer ID Application: Keybase, Inc." +./build.sh -v 5 -t filesystembundle -- -s 26.0 -d 12.3 --kext="12,26.0,25" --kext="26->12" --kext="15->12" --kext="14->12" --kext="13->12" --code-sign-identity="Developer ID Application: Keybase, Inc." cd $dir rm -rf kbfuse.bundle -ditto /tmp/kbfuse/filesystembundle/kbfuse.fs kbfuse.bundle +ditto ~/Desktop/kbfuse-5.0.6/filesystembundle/Products/kbfuse.fs kbfuse.bundle # Backup the filesystembundle directory in case we need debug symbols later -cd /tmp/kbfuse/filesystembundle +cd ~/Desktop/kbfuse-5.0.6/filesystembundle tar zcvpf $dir/fsbundle.tgz . # Sign the kext diff --git a/osx/Fuse/fsbundle.tgz b/osx/Fuse/fsbundle.tgz index 02e00449f04d..2b488a5c6343 100644 Binary files a/osx/Fuse/fsbundle.tgz and b/osx/Fuse/fsbundle.tgz differ diff --git a/osx/Fuse/kbfuse.bundle/Contents/Extensions/12/kbfuse.kext/Contents/Info.plist b/osx/Fuse/kbfuse.bundle/Contents/Extensions/12/kbfuse.kext/Contents/Info.plist index 6d88d00c364a..e265ab10f14d 100644 --- a/osx/Fuse/kbfuse.bundle/Contents/Extensions/12/kbfuse.kext/Contents/Info.plist +++ b/osx/Fuse/kbfuse.bundle/Contents/Extensions/12/kbfuse.kext/Contents/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 24A335 + 25A354 CFBundleDevelopmentRegion English CFBundleExecutable @@ -16,30 +16,28 @@ macFUSE CFBundlePackageType KEXT - CFBundleSignature - FUSE CFBundleSupportedPlatforms MacOSX CFBundleVersion - 4.8.2 + 5.0.6 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 24A336 + 25A352 DTPlatformName macosx DTPlatformVersion - 15.0 + 26.0 DTSDKBuild - 24A336 + 25A352 DTSDKName - macosx15.0 + macosx26.0 DTXcode - 1600 + 2600 DTXcodeBuild - 16A242d + 17A324 LSMinimumSystemVersion 12.3 OSBundleLibraries diff --git a/osx/Fuse/kbfuse.bundle/Contents/Extensions/12/kbfuse.kext/Contents/MacOS/kbfuse b/osx/Fuse/kbfuse.bundle/Contents/Extensions/12/kbfuse.kext/Contents/MacOS/kbfuse index 533d13534afe..5db6346505b1 100755 Binary files a/osx/Fuse/kbfuse.bundle/Contents/Extensions/12/kbfuse.kext/Contents/MacOS/kbfuse and b/osx/Fuse/kbfuse.bundle/Contents/Extensions/12/kbfuse.kext/Contents/MacOS/kbfuse differ diff --git a/osx/Fuse/kbfuse.bundle/Contents/Extensions/26 b/osx/Fuse/kbfuse.bundle/Contents/Extensions/26 new file mode 120000 index 000000000000..3cacc0b93c9c --- /dev/null +++ b/osx/Fuse/kbfuse.bundle/Contents/Extensions/26 @@ -0,0 +1 @@ +12 \ No newline at end of file diff --git a/osx/Fuse/kbfuse.bundle/Contents/Info.plist b/osx/Fuse/kbfuse.bundle/Contents/Info.plist index 6ff65b7383a1..dc2e8c8f3790 100644 --- a/osx/Fuse/kbfuse.bundle/Contents/Info.plist +++ b/osx/Fuse/kbfuse.bundle/Contents/Info.plist @@ -2,46 +2,44 @@ - BuildFlavor - BuildMachineOSBuild - 24A335 + 25A354 CFBundleDevelopmentRegion English + CFBundleDisplayName + macFUSE CFBundleIdentifier - com.github.kbfuse.filesystems.kbfuse + com.github.kbfuse.filesystems.fs.kbfuse CFBundleInfoDictionaryVersion 6.0 CFBundleName kbfuse CFBundlePackageType - fs + fs CFBundleShortVersionString - 4.8.2 - CFBundleSignature - ???? + 5.0.6 CFBundleSupportedPlatforms MacOSX CFBundleVersion - 4.8.2 + 5.0.6 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 24A336 + 25A352 DTPlatformName macosx DTPlatformVersion - 15.0 + 26.0 DTSDKBuild - 24A336 + 25A352 DTSDKName - macosx15.0 + macosx26.0 DTXcode - 1600 + 2600 DTXcodeBuild - 16A242d + 17A324 FSPersonalities Beagle diff --git a/osx/Fuse/kbfuse.bundle/Contents/Resources/License.rtf b/osx/Fuse/kbfuse.bundle/Contents/Resources/License.rtf index 744247737a4a..8dd3e17db433 100644 --- a/osx/Fuse/kbfuse.bundle/Contents/Resources/License.rtf +++ b/osx/Fuse/kbfuse.bundle/Contents/Resources/License.rtf @@ -1,4 +1,4 @@ -{\rtf1\ansi\ansicpg1252\cocoartf2759 +{\rtf1\ansi\ansicpg1252\cocoartf2821 \cocoascreenfonts1\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fswiss\fcharset0 Helvetica-Oblique;} {\colortbl;\red255\green255\blue255;\red118\green118\blue118;\red255\green255\blue255;\red255\green255\blue255; } @@ -20,7 +20,7 @@ \clvertalc \clshdrawnil \clbrdrt\brdrs\brdrw500\brdrcf3 \clbrdrl\brdrs\brdrw500\brdrcf3 \clbrdrb\brdrs\brdrw500\brdrcf3 \clbrdrr\brdrs\brdrw500\brdrcf3 \clpadl100 \clpadr100 \gaph\cellx8640 \pard\intbl\itap1\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\partightenfactor0 -\fs20 \cf2 Copyright (c) 2011-2024 Benjamin Fleischer\ +\fs20 \cf2 Copyright (c) 2011-2025 Benjamin Fleischer\ All rights reserved.\ \ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\ diff --git a/osx/Fuse/kbfuse.bundle/Contents/Resources/load_kbfuse b/osx/Fuse/kbfuse.bundle/Contents/Resources/load_kbfuse index 5c441994c54d..ff8bb2d99acd 100755 Binary files a/osx/Fuse/kbfuse.bundle/Contents/Resources/load_kbfuse and b/osx/Fuse/kbfuse.bundle/Contents/Resources/load_kbfuse differ diff --git a/osx/Fuse/kbfuse.bundle/Contents/Resources/mount_kbfuse b/osx/Fuse/kbfuse.bundle/Contents/Resources/mount_kbfuse index b66fe7b1dd15..4e3770e715af 100755 Binary files a/osx/Fuse/kbfuse.bundle/Contents/Resources/mount_kbfuse and b/osx/Fuse/kbfuse.bundle/Contents/Resources/mount_kbfuse differ diff --git a/osx/Fuse/kbfuse.bundle/Contents/_CodeSignature/CodeDirectory b/osx/Fuse/kbfuse.bundle/Contents/_CodeSignature/CodeDirectory index 07a43834731d..e62e8eae7da3 100644 Binary files a/osx/Fuse/kbfuse.bundle/Contents/_CodeSignature/CodeDirectory and b/osx/Fuse/kbfuse.bundle/Contents/_CodeSignature/CodeDirectory differ diff --git a/osx/Fuse/kbfuse.bundle/Contents/_CodeSignature/CodeRequirements b/osx/Fuse/kbfuse.bundle/Contents/_CodeSignature/CodeRequirements index 070fc99c5068..b903dfc4e843 100644 Binary files a/osx/Fuse/kbfuse.bundle/Contents/_CodeSignature/CodeRequirements and b/osx/Fuse/kbfuse.bundle/Contents/_CodeSignature/CodeRequirements differ diff --git a/osx/Fuse/kbfuse.bundle/Contents/_CodeSignature/CodeRequirements-1 b/osx/Fuse/kbfuse.bundle/Contents/_CodeSignature/CodeRequirements-1 deleted file mode 100644 index 37307768997d..000000000000 Binary files a/osx/Fuse/kbfuse.bundle/Contents/_CodeSignature/CodeRequirements-1 and /dev/null differ diff --git a/osx/Fuse/kbfuse.bundle/Contents/_CodeSignature/CodeResources b/osx/Fuse/kbfuse.bundle/Contents/_CodeSignature/CodeResources index c1294cd5f289..519ade6d13f3 100644 --- a/osx/Fuse/kbfuse.bundle/Contents/_CodeSignature/CodeResources +++ b/osx/Fuse/kbfuse.bundle/Contents/_CodeSignature/CodeResources @@ -6,7 +6,7 @@ Resources/License.rtf - Yh9IUz9T3WPa45y7wWB+5qUkKKs= + MokDHlYoUAJGsuUmYDQqu2m4Fl8= Resources/Volume.icns @@ -14,47 +14,35 @@ Resources/load_kbfuse - dBkhtrFqRyypjPa6e4l3wpkIN6s= + vIMryRgxTKdTfdFCPxdyB/8BnJs= Resources/mount_kbfuse - Styry7MbO1r/2L93Vpm4MrZ/wi8= + BjszRYqSR/WCMJdUxFOo0J+Ew/k= version.plist - rtVXUjgH7zfwKAD2FXWUTmdBbbk= + j78YcBD6wh6Y112lP8FTv6osm+M= files2 Extensions/12/kbfuse.kext/Contents/Info.plist - hash - - NYNdbc6dF9IvWGJ1dpQJKpSdq0Y= - hash2 - 5ZL4722iB7LCgRM8XBWq/khAVydQp8AoMrEPJ745qRk= + XmRFwKHEXEhSymDjlfTpI+Tz93hbZb9qLXCPWoHS3N4= Extensions/12/kbfuse.kext/Contents/MacOS/kbfuse - hash - - 0RDLRfqLt+dro09KcQz0wiLI8yk= - hash2 - V4h/yDAS2wvDXW/KDhph+NrdPvdbKeRwdg7tOCCQkOg= + MF9cB3y/Sx+6tgZ1uqrdv1lG5P0l0/mYF8RMxO4RWrI= Extensions/12/kbfuse.kext/Contents/_CodeSignature/CodeResources - hash - - YwoIhzByBpYWzcwx9V5tdCMIbXg= - hash2 ZobeEKKKL+EbNsu4bcusyCfPxOoRa02r8YReWu5inps= @@ -75,23 +63,20 @@ symlink 12 + Extensions/26 + + symlink + 12 + Resources/License.rtf - hash - - Yh9IUz9T3WPa45y7wWB+5qUkKKs= - hash2 - h5rYq1/Ai4lH3Ox3ehR+S0rjpGnLodWSQIHDsF8tUGA= + sCzj80CpQK29HuxpJB0fJ+rHfB5qhMyscj9nUEO+CvA= Resources/Volume.icns - hash - - qJASDfOipoOWzjNc2uiXNdbEyrw= - hash2 5EGzd4N1aaAnPoccVlA1sEspNMld7NgewR9jMPrIJYo= @@ -99,35 +84,23 @@ Resources/load_kbfuse - hash - - dBkhtrFqRyypjPa6e4l3wpkIN6s= - hash2 - 9LTZ2OVVkImZIILbik+AUsB2YvCFh0FN92+nMLePS4w= + 50EW3Cwirp4WN1REPer1vQvBIgCVESHJwbL4s4mv9KQ= Resources/mount_kbfuse - hash - - Styry7MbO1r/2L93Vpm4MrZ/wi8= - hash2 - /O/j+LdYyskoXFv/JiCLisviXNAk3uMq3Mq2HuseAc4= + jORbqAL4H6UtWl04S1w7j4THyZYmM4w99bovJmardN4= version.plist - hash - - rtVXUjgH7zfwKAD2FXWUTmdBbbk= - hash2 - FHm1I+38VV8yC9Shfq5xR/Am4oQifCpylejL2f0Onxs= + 3Dh8njcS28IM/u9yUs1CCEYX2+v3ocB2rK1ryB8av5E= diff --git a/osx/Fuse/kbfuse.bundle/Contents/_CodeSignature/CodeSignature b/osx/Fuse/kbfuse.bundle/Contents/_CodeSignature/CodeSignature index 094c9ecc64c8..7c144928fa76 100644 Binary files a/osx/Fuse/kbfuse.bundle/Contents/_CodeSignature/CodeSignature and b/osx/Fuse/kbfuse.bundle/Contents/_CodeSignature/CodeSignature differ diff --git a/osx/Fuse/kbfuse.bundle/Contents/version.plist b/osx/Fuse/kbfuse.bundle/Contents/version.plist index 1fb4b6619214..f4c1c855f2b0 100644 --- a/osx/Fuse/kbfuse.bundle/Contents/version.plist +++ b/osx/Fuse/kbfuse.bundle/Contents/version.plist @@ -1,13 +1,13 @@ - + BuildVersion 1 CFBundleShortVersionString - 4.8.2 + 5.0.6 CFBundleVersion - 4.8.2 + 5.0.6 ProjectName macFUSE SourceVersion diff --git a/osx/Installer/Info.plist b/osx/Installer/Info.plist index 36da3ff15162..8761549497a3 100644 --- a/osx/Installer/Info.plist +++ b/osx/Installer/Info.plist @@ -15,15 +15,15 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.1.93 + 1.1.94 CFBundleSignature KEYB CFBundleVersion - 1.1.93 + 1.1.94 KBFuseBuild - 4.8.2 + 5.0.6 KBFuseVersion - 4.8.2 + 5.0.6 KBHelperBuild 1.0.47 KBHelperVersion diff --git a/packaging/desktop/package_darwin.sh b/packaging/desktop/package_darwin.sh index b53159042fb5..3ceeb6fec753 100755 --- a/packaging/desktop/package_darwin.sh +++ b/packaging/desktop/package_darwin.sh @@ -110,7 +110,7 @@ resources_dir="$out_dir/Keybase.app/Contents/Resources/" # TODO build and publish an arm64 version # The KeybaseInstaller.app installs KBFuse, keybase.Helper, services and CLI via a native app -installer_url="https://prerelease.keybase.io/darwin-package/KeybaseInstaller-1.1.93-darwin.tgz" +installer_url="https://prerelease.keybase.io/darwin-package/KeybaseInstaller-1.1.94-darwin.tgz" # KeybaseUpdater.app is the native updater UI (prompt dialogs) updater_url="https://prerelease.keybase.io/darwin-package/KeybaseUpdater-1.0.7-darwin.tgz" diff --git a/packaging/desktop/yarn.lock b/packaging/desktop/yarn.lock index b31026aec28b..3ce2cd63d3f8 100644 --- a/packaging/desktop/yarn.lock +++ b/packaging/desktop/yarn.lock @@ -44,9 +44,9 @@ color-convert@~0.5.0: integrity sha512-RwBeO/B/vZR3dfKL1ye/vx8MHZ40ugzpyfeVG5GsiuGnrlMWe2o8wxBbLCpw9CsxV+wHuzYlCiWnybrIA0ling== cross-spawn@^6.0.0: - version "6.0.5" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" - integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + version "6.0.6" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.6.tgz#30d0efa0712ddb7eb5a76e1e8721bffafa6b5d57" + integrity sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw== dependencies: nice-try "^1.0.4" path-key "^2.0.1" @@ -69,9 +69,9 @@ encode-utf8@^1.0.3: integrity sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw== end-of-stream@^1.1.0: - version "1.4.4" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + version "1.4.5" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.5.tgz#7344d711dea40e0b74abc2ed49778743ccedb08c" + integrity sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg== dependencies: once "^1.4.0" @@ -175,9 +175,9 @@ jsonpointer@^5.0.0: integrity sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ== macos-alias@~0.2.5: - version "0.2.11" - resolved "https://registry.yarnpkg.com/macos-alias/-/macos-alias-0.2.11.tgz#feeea6c13ba119814a43fc43c470b31e59ef718a" - integrity sha512-zIUs3+qpml+w3wiRuADutd7XIO8UABqksot10Utl/tji4UxZzLG4fWDC+yJZoO8/Ehg5RqsvSRE/6TS5AEOeWw== + version "0.2.12" + resolved "https://registry.yarnpkg.com/macos-alias/-/macos-alias-0.2.12.tgz#c984db71b7c2372924548291a0790b43c080606b" + integrity sha512-yiLHa7cfJcGRFq4FrR4tMlpNHb4Vy4mWnpajlSSIFM5k4Lv8/7BbbDLzCAVogWNl0LlLhizRp1drXv0hK9h0Yw== dependencies: nan "^2.4.0" @@ -196,9 +196,9 @@ minimist@^1.1.3: imul "^1.0.0" nan@^2.4.0: - version "2.19.0" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.19.0.tgz#bb58122ad55a6c5bc973303908d5b16cfdd5a8c0" - integrity sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw== + version "2.23.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.23.0.tgz#24aa4ddffcc37613a2d2935b97683c1ec96093c6" + integrity sha512-1UxuyYGdoQHcGg87Lkqm3FzefucTa0NAiOcuRsDmysep3c1LVCRK2krrUDafMWtjSG04htvAmvg96+SDknOmgQ== nice-try@^1.0.4: version "1.0.5" @@ -242,9 +242,9 @@ path-key@^2.0.0, path-key@^2.0.1: integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== pump@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + version "3.0.3" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.3.tgz#151d979f1a29668dc0025ec589a455b53282268d" + integrity sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA== dependencies: end-of-stream "^1.1.0" once "^1.3.1" diff --git a/shared/android/app/build.gradle b/shared/android/app/build.gradle index a3b1e0aaa492..553a09cc4c9f 100644 --- a/shared/android/app/build.gradle +++ b/shared/android/app/build.gradle @@ -3,7 +3,7 @@ apply plugin: "com.facebook.react" apply plugin: 'com.github.triplet.play' // KB: app version -def VERSION_NAME = "6.5.2" +def VERSION_NAME = "6.5.4" // KB: Number of commits, like ios Integer getVersionCode() { diff --git a/shared/desktop/CHANGELOG.txt b/shared/desktop/CHANGELOG.txt index 9a07890adad4..094f8fefae1f 100644 --- a/shared/desktop/CHANGELOG.txt +++ b/shared/desktop/CHANGELOG.txt @@ -1 +1,3 @@ -• Fix a bug when deleting teams. +macOS: + +• Fix the KBFS mount to work on macOS 26 (Tahoe). diff --git a/shared/ios/Keybase/Info.plist b/shared/ios/Keybase/Info.plist index b122e765cdc5..7f7298cd6616 100644 --- a/shared/ios/Keybase/Info.plist +++ b/shared/ios/Keybase/Info.plist @@ -19,7 +19,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 6.5.2 + 6.5.4 CFBundleSignature ???? CFBundleURLTypes diff --git a/shared/ios/KeybaseShare/Info.plist b/shared/ios/KeybaseShare/Info.plist index c1d7ab5deb1c..2a24cbd21a19 100644 --- a/shared/ios/KeybaseShare/Info.plist +++ b/shared/ios/KeybaseShare/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 6.5.2 + 6.5.4 CFBundleVersion 1 NSExtension