diff --git a/CHANGELOG.md b/CHANGELOG.md index 4513e8ed41dcda0c07ba83ff5dc6e3b4080971a2..8aa41fb24c576c9ba6f52eb64d9c203242698134 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # IPtProxy Changelog +## 1.5.0 +- Updated Obfs4proxy to latest version 0.0.13. +- Updated Snowflake to latest version 2.1.0. +- Fixed bug when stopping Snowflake proxy. (Thanks bitmold!) + ## 1.4.0 - Updated Obfs4proxy to latest 0.0.13-dev which fixes a bug which made prior versions distinguishable. diff --git a/IPtProxy.aar b/IPtProxy.aar index 3f437fd572e421339741dfb6111769cd32b6f7f0..44920e26671062ef8545d407c2016080730b0d98 100644 Binary files a/IPtProxy.aar and b/IPtProxy.aar differ diff --git a/IPtProxy.podspec b/IPtProxy.podspec index dcb7283e9e8c9e59a6d10de3b6ed47d635de7e68..3e6f1037cb2f51509b71ef240b24a28a4f5287c5 100644 --- a/IPtProxy.podspec +++ b/IPtProxy.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'IPtProxy' - s.version = '1.4.0' + s.version = '1.5.0' s.summary = 'Obfs4proxy and Snowflake Pluggable Transports for iOS' s.description = <<-DESC diff --git a/IPtProxy.xcframework/ios-arm64/IPtProxy.framework/Versions/A/IPtProxy b/IPtProxy.xcframework/ios-arm64/IPtProxy.framework/Versions/A/IPtProxy index 31af4b8efbe42b1cda8c96ed2f8b729546189794..d88eaf73500871f178a733f571b3367132f39bb5 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 270e9649ad53539c3aab73f02eb6a63ef1cf1ddc..ce7dbd2ff274628260fcdf6e05636ae6eaf01e18 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/README.md b/README.md index a46d395a303791d7d628f2cb0c684e5f1c0b203c..767b4c8999e6af179dd40b9de86ced1879102192 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,11 @@ Obfs4proxy and Snowflake Pluggable Transports for iOS and Android [](https://cocoapods.org/pods/IPtProxy) [](https://cocoapods.org/pods/IPtProxy) +| Transport | Version | +|------------|--------:| +| Obfs4proxy | 0.0.13 | +| Snowflake | 2.1.0 | + Both Obfs4proxy and Snowflake Pluggable Transports are written in Go, which is a little annoying to use on iOS and Android. This project encapsulates all the machinations to make it work and provides an @@ -41,7 +46,7 @@ IPtProxy is available through [CocoaPods](https://cocoapods.org). To install it, simply add the following line to your `Podfile`: ```ruby -pod 'IPtProxy', '~> 1.4' +pod 'IPtProxy', '~> 1.5' ``` ### Getting Started @@ -59,7 +64,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.4.0' +implementation 'com.github.tladesignz:IPtProxy:1.5.0' ``` And this to your root `build.gradle` at the end of repositories: diff --git a/jitpack.yml b/jitpack.yml index 87d04bf877436ccafff9ae827265f63cb06279cf..b04b7d6e30ff30268a2a920b3f79eb85ebecac96 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.4.0 -Dpackaging=aar -DgeneratePom=true -Dsources=IPtProxy-sources.jar + - mvn install:install-file $FILE -DgroupId=com.github.tladesignz -DartifactId=IPtProxy -Dversion=1.5.0 -Dpackaging=aar -DgeneratePom=true -Dsources=IPtProxy-sources.jar diff --git a/pom.xml b/pom.xml index a6061f3b284c3223ec2c544c4d1ff91e5d159282..387cc552c2bafc46cb36829063557370b1af802d 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.4.0</version> + <version>1.5.0</version> </project>