Skip to content

Commit 584d94c

Browse files
authored
Anyone DNS Integration (#126)
2 parents 54b9884 + 4be8286 commit 584d94c

54 files changed

Lines changed: 50792 additions & 20894 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/actions/build-debian-package/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ runs:
3131
shell: bash
3232
run: |
3333
apt-get -y update
34-
apt-get -y dist-upgrade
3534
apt-get -y install build-essential devscripts gpg reprepro fakeroot
3635
- name: Build Package
3736
shell: bash

.github/actions/build-windows/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ runs:
8080
- name: Build zlib
8181
shell: bash
8282
run: |
83-
wget --quiet https://www.zlib.net/fossils/zlib-${{ inputs.zlib-version }}.tar.gz
83+
wget --tries=5 --waitretry=2 --timeout=30 https://www.zlib.net/fossils/zlib-${{ inputs.zlib-version }}.tar.gz
8484
tar zxf zlib-${{ inputs.zlib-version }}.tar.gz
8585
rm zlib-${{ inputs.zlib-version }}.tar.gz
8686
cd zlib-${{ inputs.zlib-version }}

.github/workflows/build-debian.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ jobs:
5454
- name: Install Dependencies
5555
run: |
5656
apt-get -y update
57-
apt-get -y dist-upgrade
5857
apt-get -y install sudo git build-essential devscripts gpg
5958
- name: Checkout Repository
6059
uses: actions/checkout@v4

.github/workflows/build-packages.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ jobs:
4545
- name: Install Dependencies
4646
run: |
4747
apt-get -y update
48-
apt-get -y dist-upgrade
4948
apt-get -y install sudo git build-essential devscripts gpg
5049
- name: Checkout Repository
5150
uses: actions/checkout@v4
@@ -131,7 +130,6 @@ jobs:
131130
- name: Install Dependencies
132131
run: |
133132
apt-get -y update
134-
apt-get -y dist-upgrade
135133
apt-get -y install sudo git build-essential devscripts gpg
136134
- name: Checkout Repository
137135
uses: actions/checkout@v4
@@ -204,7 +202,7 @@ jobs:
204202
build-windows-64-binary:
205203
runs-on: ubuntu-latest
206204
container:
207-
image: ubuntu:latest
205+
image: ubuntu:24.04
208206
steps:
209207
- name: Checkout Repository
210208
uses: actions/checkout@v4
@@ -240,7 +238,6 @@ jobs:
240238
- name: Install Dependencies
241239
run: |
242240
apt-get -y update
243-
apt-get -y dist-upgrade
244241
apt-get -y install devscripts zip gpg dput openssh-client
245242
- name: Download raw artifacts
246243
uses: actions/download-artifact@v4

.github/workflows/build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
build-windows-64-binary:
1919
runs-on: ubuntu-latest
2020
container:
21-
image: ubuntu:latest
21+
image: ubuntu:24.04
2222
steps:
2323
- name: Checkout Repository
2424
uses: actions/checkout@v4

.github/workflows/debian-repo-deploy.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ jobs:
1212
- name: Install Dependencies
1313
run: |
1414
apt-get -y update
15-
apt-get -y dist-upgrade
1615
apt-get -y install curl unzip
1716
1817
- name: Checkout Repository

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dnl Copyright (c) 2007-2019, The Tor Project, Inc.
44
dnl See LICENSE for licensing information
55

66
AC_PREREQ([2.63])
7-
AC_INIT([anon],[0.4.9.13-git])
7+
AC_INIT([anon],[0.4.10.2-git])
88
AC_CONFIG_SRCDIR([src/app/main/anon_main.c])
99
AC_CONFIG_MACRO_DIR([m4])
1010

@@ -18,7 +18,7 @@ AC_DEFINE_UNQUOTED([CONFIG_FLAGS], ["$configure_flags"], [Flags passed to config
1818
# version number changes. Anon uses it to make sure that it
1919
# only shuts down for missing "required protocols" when those protocols
2020
# are listed as required by a consensus after this date.
21-
AC_DEFINE(APPROX_RELEASE_DATE, ["2025-04-23"], # for 0.4.9.13-git
21+
AC_DEFINE(APPROX_RELEASE_DATE, ["2026-05-20"], # for 0.4.10.2-git
2222
[Approximate date when this software was released. (Updated when the version changes.)])
2323

2424
# "foreign" means we don't follow GNU package layout standards

contrib/win32build/anon-mingw.nsi.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
!include "LogicLib.nsh"
99
!include "FileFunc.nsh"
1010
!insertmacro GetParameters
11-
!define VERSION "0.4.9.12-git"
11+
!define VERSION "0.4.10.2-git"
1212
!define INSTALLER "tor-${VERSION}-win32.exe"
1313
!define WEBSITE "https://www.torproject.org/"
1414
!define LICENSE "LICENSE"

0 commit comments

Comments
 (0)