diff --git a/IPtProxy-sources.jar b/IPtProxy-sources.jar index 8dce98d6bd4f3c3e8e6e7cd1342575a86d930a3f..e7ebe42c00f82ec63f3ab3e3a79fdb1a8c9e4fc1 100644 Binary files a/IPtProxy-sources.jar and b/IPtProxy-sources.jar differ diff --git a/IPtProxy.aar b/IPtProxy.aar index 47926bcfe5ea9c6657e994460115d9f2364fb0c2..e8a076d5568acfd0fe151c1e858a8090008b3192 100644 Binary files a/IPtProxy.aar and b/IPtProxy.aar differ diff --git a/IPtProxy.framework/Versions/A/Headers/IPtProxy.objc.h b/IPtProxy.framework/Versions/A/Headers/IPtProxy.objc.h index 9f50424cd53045834607fa0a2d67856d7754b324..1a1faaacac9ac20202f2bf19a71538452ad47961 100644 --- a/IPtProxy.framework/Versions/A/Headers/IPtProxy.objc.h +++ b/IPtProxy.framework/Versions/A/Headers/IPtProxy.objc.h @@ -88,4 +88,9 @@ FOUNDATION_EXPORT void IPtProxyStopObfs4Proxy(void); */ FOUNDATION_EXPORT void IPtProxyStopSnowflake(void); +/** + * Stop the Snowflake proxy. + */ +FOUNDATION_EXPORT void IPtProxyStopSnowflakeProxy(void); + #endif diff --git a/IPtProxy.framework/Versions/A/IPtProxy b/IPtProxy.framework/Versions/A/IPtProxy index 7cf1dac1e66cca700d0d39d7f888f73e0cde5787..ecab973da170fe35b0484c140e8497aeee45b382 100644 Binary files a/IPtProxy.framework/Versions/A/IPtProxy and b/IPtProxy.framework/Versions/A/IPtProxy differ diff --git a/IPtProxy.podspec b/IPtProxy.podspec index 57ee3df240e01f9081d5fed3ba609b817462ba1b..8127444492dc895c3dc1dc332f3ed45edc14b02f 100644 --- a/IPtProxy.podspec +++ b/IPtProxy.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'IPtProxy' - s.version = '0.5.2' + s.version = '0.6.0' s.summary = 'Obfs4proxy and Snowflake Pluggable Transports for iOS' s.description = <<-DESC diff --git a/README.md b/README.md index 6b122a381076b45eebb1e5705203cfd64893a4c6..c11a4f5011e11abb8d49e0ec8d3e4af9be6d0bc3 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ IPtProxy is available through [CocoaPods](https://cocoapods.org). To install it, simply add the following line to your `Podfile`: ```ruby -pod 'IPtProxy', '~> 0.5' +pod 'IPtProxy', '~> 0.6' ``` ## Android Installation @@ -45,7 +45,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:0.5.2' +implementation 'com.github.tladesignz:IPtProxy:0.6.0' ``` And this to your root `build.gradle` at the end of repositories: diff --git a/build.sh b/build.sh index 9b2ed3727a71cdfed4524cd1a9197d5f477f98dc..c03ac8a80f097e50f311251addd34b2e91615578 100755 --- a/build.sh +++ b/build.sh @@ -16,7 +16,7 @@ if test -e $OUTPUT; then fi # Install dependencies. Go itself is a prerequisite. -printf '\n--- Golang 1.15 or up needs to be installed! Try "brew install go" on MacOS or "snap install go" on Linux if we fail further down!' +printf '\n--- Golang 1.16 or up needs to be installed! Try "brew install go" on MacOS or "snap install go" on Linux if we fail further down!' printf '\n--- Installing gomobile...\n' go get -v golang.org/x/mobile/cmd/gomobile diff --git a/jitpack.yml b/jitpack.yml index 7ee31c276be209e31ce9ed20ed452edfc2d3303d..4ae74e56db51c066d6b9e99590d4867f4c3be329 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=0.5.2 -Dpackaging=aar -DgeneratePom=true + - mvn install:install-file $FILE -DgroupId=com.github.tladesignz -DartifactId=IPtProxy -Dversion=0.6.0 -Dpackaging=aar -DgeneratePom=true diff --git a/pom.xml b/pom.xml index d650331cdcc4f24ed14aaa39c6cd23ac3b49ddee..dd6538f435c2498dacebbedddded950bcf63d7ef 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>0.5.2</version> + <version>0.6.0</version> </project>