diff --git a/Example/Podfile b/Example/Podfile index 4b23a57..bfe6d5c 100644 --- a/Example/Podfile +++ b/Example/Podfile @@ -3,7 +3,9 @@ use_frameworks! target 'Tor-Example' do platform :ios, '12.0' - pod 'Tor/GeoIP', :path => '../' # :podspec => '../TorStatic.podspec' + pod 'Tor/GeoIP', + :path => '../' +# :podspec => '../TorStatic.podspec' target 'Tor-Tests' do inherit! :search_paths @@ -14,5 +16,7 @@ end target 'Tor-Example-Mac' do platform :macos, '10.13' - pod 'Tor/GeoIP', :path => '../' # :podspec => '../TorStatic.podspec' + pod 'Tor/GeoIP', + :path => '../' +# :podspec => '../TorStatic.podspec' end diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 5221df1..a523953 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -1,8 +1,8 @@ PODS: - - Tor/Core (408.4.1) - - Tor/CTor (408.4.1): + - Tor/Core (408.7.1) + - Tor/CTor (408.7.1): - Tor/Core - - Tor/GeoIP (408.4.1): + - Tor/GeoIP (408.7.1): - Tor/CTor DEPENDENCIES: @@ -13,8 +13,8 @@ EXTERNAL SOURCES: :path: "../" SPEC CHECKSUMS: - Tor: f0d002b308ad4b853eef8d93200bb94941f70130 + Tor: c54a108ff3e2b14b30003f4afae40b398148bedd -PODFILE CHECKSUM: ae4640c4f0a62fbdda83da7092417af483bda8db +PODFILE CHECKSUM: 2f9608a531e3d9b797e8856fe1dda57dd0b95e4c COCOAPODS: 1.13.0 diff --git a/README.md b/README.md index 85ccecc..0edd38a 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,9 @@ Currently, the framework compiles in the following versions of `tor`, `libevent` | | | |:-------- | --------:| -| tor | 0.4.8.4 | +| tor | 0.4.8.7 | | libevent | 2.1.12 | -| OpenSSL | 3.1.2 | +| OpenSSL | 3.1.4 | | liblzma | 5.4.4 | @@ -99,7 +99,7 @@ To upgrade Tor: ```bash cd Tor/tor git fetch -git checkout tor-0.4.7.13 # Find latest versions with git tag -l +git checkout tor-0.4.8.7 # Find latest versions with git tag -l rm -r * && git checkout . # Get rid of all autogenerated configuration files, which may not work with the newest version anymore. git submodule update --init --recursive # Later Tor has submodules. ``` diff --git a/Tor.podspec b/Tor.podspec index 831d643..0899c6e 100644 --- a/Tor.podspec +++ b/Tor.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |m| m.name = 'Tor' - m.version = '408.4.1' + m.version = '408.7.1' m.summary = 'Tor.framework is the easiest way to embed Tor in your iOS application.' m.description = 'Tor.framework is the easiest way to embed Tor in your iOS application. Currently, the framework compiles in static versions of tor, libevent, openssl, and liblzma.' diff --git a/TorStatic.podspec b/TorStatic.podspec index d6f72aa..df1b79a 100644 --- a/TorStatic.podspec +++ b/TorStatic.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |m| # TODO: Why the hell do I need to provide this manually? CocoaPods should figure this out automatically, like with other pods, when they're used as static libraries. m.name = 'Tor' - m.version = '408.4.1' + m.version = '408.7.1' m.summary = 'Tor.framework is the easiest way to embed Tor in your iOS application.' m.description = 'Tor.framework is the easiest way to embed Tor in your iOS application. Currently, the framework compiles in static versions of tor, libevent, openssl, and liblzma.'