diff --git a/CHANGELOG.md b/CHANGELOG.md index 599d77d548f5ddb72b1daea1cad97a0316bcbe6d..f2e3e35935808bce1511ef1ba48fb0d4b743cc45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # IPtProxy Changelog +## 1.7.1 +- Fixed Snowflake Proxy support. + ## 1.7.0 - Update Snowflake to latest version 2.3.0. - Added `IPtProxySnowflakeVersion` returning the version of the used Snowflake. diff --git a/IPtProxy.aar b/IPtProxy.aar index a07054a72db7888c7211228863bcdb4df10e857e..0b1a777b1ed672e0ffd6a6a400ed7dc00f101e01 100644 Binary files a/IPtProxy.aar and b/IPtProxy.aar differ diff --git a/IPtProxy.podspec b/IPtProxy.podspec index 03713d1192c5a6cdc17c9daaefbb5814683f0b5b..2a0af9dca9abbd86f70bb163dda0260eeee1872a 100644 --- a/IPtProxy.podspec +++ b/IPtProxy.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'IPtProxy' - s.version = '1.7.0' + s.version = '1.7.1' s.summary = 'Obfs4proxy and Snowflake Pluggable Transports for iOS and macOS' s.description = <<-DESC diff --git a/IPtProxy.xcframework/Info.plist b/IPtProxy.xcframework/Info.plist index cf9cf515fc90351a33402fed4678715adf44d61c..ba015a463cc599e571604feb65d01905df4d8219 100644 --- a/IPtProxy.xcframework/Info.plist +++ b/IPtProxy.xcframework/Info.plist @@ -6,15 +6,16 @@ <array> <dict> <key>LibraryIdentifier</key> - <string>ios-arm64</string> + <string>macos-arm64_x86_64</string> <key>LibraryPath</key> <string>IPtProxy.framework</string> <key>SupportedArchitectures</key> <array> <string>arm64</string> + <string>x86_64</string> </array> <key>SupportedPlatform</key> - <string>ios</string> + <string>macos</string> </dict> <dict> <key>LibraryIdentifier</key> @@ -33,16 +34,15 @@ </dict> <dict> <key>LibraryIdentifier</key> - <string>macos-arm64_x86_64</string> + <string>ios-arm64</string> <key>LibraryPath</key> <string>IPtProxy.framework</string> <key>SupportedArchitectures</key> <array> <string>arm64</string> - <string>x86_64</string> </array> <key>SupportedPlatform</key> - <string>macos</string> + <string>ios</string> </dict> </array> <key>CFBundlePackageType</key> diff --git a/IPtProxy.xcframework/ios-arm64/IPtProxy.framework/Versions/A/IPtProxy b/IPtProxy.xcframework/ios-arm64/IPtProxy.framework/Versions/A/IPtProxy index 30c62b63cf733d081f0a5a104b382fdab6b35456..b3bbffe0aca39dc79c395501aa6d99b07daf7764 100644 Binary files a/IPtProxy.xcframework/ios-arm64/IPtProxy.framework/Versions/A/IPtProxy and b/IPtProxy.xcframework/ios-arm64/IPtProxy.framework/Versions/A/IPtProxy differ diff --git a/IPtProxy.xcframework/ios-arm64_x86_64-simulator/IPtProxy.framework/Versions/A/IPtProxy b/IPtProxy.xcframework/ios-arm64_x86_64-simulator/IPtProxy.framework/Versions/A/IPtProxy index 85dade05d940d42de91fa5d6430313d38624291e..5a625f67d1514273850a5201a3ce62453bf66ee7 100644 Binary files a/IPtProxy.xcframework/ios-arm64_x86_64-simulator/IPtProxy.framework/Versions/A/IPtProxy and b/IPtProxy.xcframework/ios-arm64_x86_64-simulator/IPtProxy.framework/Versions/A/IPtProxy differ diff --git a/IPtProxy.xcframework/macos-arm64_x86_64/IPtProxy.framework/Versions/A/IPtProxy b/IPtProxy.xcframework/macos-arm64_x86_64/IPtProxy.framework/Versions/A/IPtProxy index 3d85cbfa44b842110fcf501a9d80c4bfc1671b0c..900e6ae88238501126c60d1339d1dd206a40a747 100644 Binary files a/IPtProxy.xcframework/macos-arm64_x86_64/IPtProxy.framework/Versions/A/IPtProxy and b/IPtProxy.xcframework/macos-arm64_x86_64/IPtProxy.framework/Versions/A/IPtProxy differ diff --git a/README.md b/README.md index 2d148c5d8686659f6f39f4fcaa8c51b32723be85..dfa06b8cffe800cc266a9b8825d8f7530eadd9e4 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ IPtProxy is available through [JitPack](https://jitpack.io). To install it, simply add the following line to your `build.gradle` file: ```groovy -implementation 'com.github.tladesignz:IPtProxy:1.7.0' +implementation 'com.github.tladesignz:IPtProxy:1.7.1' ``` And this to your root `build.gradle` at the end of repositories: diff --git a/jitpack.yml b/jitpack.yml index 692f7301d3f7d20c50a4b7e1b2fd1f13c0ed9ad7..85b437188b835da3a8250e2fcaef03aef0ab5aac 100644 --- a/jitpack.yml +++ b/jitpack.yml @@ -1,3 +1,3 @@ install: - FILE="-Dfile=IPtProxy.aar" - - mvn install:install-file $FILE -DgroupId=com.github.tladesignz -DartifactId=IPtProxy -Dversion=1.7.0 -Dpackaging=aar -DgeneratePom=true -Dsources=IPtProxy-sources.jar + - mvn install:install-file $FILE -DgroupId=com.github.tladesignz -DartifactId=IPtProxy -Dversion=1.7.1 -Dpackaging=aar -DgeneratePom=true -Dsources=IPtProxy-sources.jar diff --git a/pom.xml b/pom.xml index 5456d8664ddf347f02e057cf979d78654830798d..1184fa066de6daa5dccd6a49082d055ad7fd664c 100644 --- a/pom.xml +++ b/pom.xml @@ -5,5 +5,5 @@ <modelVersion>4.0.0</modelVersion> <groupId>com.github.tladesignz</groupId> <artifactId>IPtProxy</artifactId> - <version>1.7.0</version> + <version>1.7.1</version> </project>