Skip to content

Commit

Permalink
Release version 408.7.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
tladesignz committed Oct 24, 2023
1 parent d39394c commit f9de19f
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 12 deletions.
8 changes: 6 additions & 2 deletions Example/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
10 changes: 5 additions & 5 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -13,8 +13,8 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
Tor: f0d002b308ad4b853eef8d93200bb94941f70130
Tor: c54a108ff3e2b14b30003f4afae40b398148bedd

PODFILE CHECKSUM: ae4640c4f0a62fbdda83da7092417af483bda8db
PODFILE CHECKSUM: 2f9608a531e3d9b797e8856fe1dda57dd0b95e4c

COCOAPODS: 1.13.0
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |


Expand Down Expand Up @@ -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.
```
Expand Down
2 changes: 1 addition & 1 deletion Tor.podspec
Original file line number Diff line number Diff line change
@@ -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.'

Expand Down
2 changes: 1 addition & 1 deletion TorStatic.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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.'

Expand Down

0 comments on commit f9de19f

Please sign in to comment.