]> git.ipfire.org Git - thirdparty/tor.git/log
thirdparty/tor.git
3 years agoprotover: Add function to get the value of a single type
David Goulet [Thu, 4 Nov 2021 14:20:07 +0000 (10:20 -0400)] 
protover: Add function to get the value of a single type

We can now query the protover subsystem to get the current value we
support for a specific protover type.

This will be useful for prop324 onion service part which puts in the
FlowCtrl value in the service descriptor.

No behavior change.

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agoAdd test for congestion control negotiation logic.
Mike Perry [Tue, 23 Nov 2021 20:47:24 +0000 (20:47 +0000)] 
Add test for congestion control negotiation logic.

3 years agoAdd test for TAP vs ntor2+ntor3 onion queue ordering
Mike Perry [Tue, 23 Nov 2021 16:09:37 +0000 (16:09 +0000)] 
Add test for TAP vs ntor2+ntor3 onion queue ordering

3 years agoAdd hidden torrc option to always try CC negotiation.
Mike Perry [Tue, 16 Nov 2021 22:01:54 +0000 (22:01 +0000)] 
Add hidden torrc option to always try CC negotiation.

This is for public network testing and for sbws. Should not otherwise be used,
hence it is an undocumented __option.

The option deliberately does not allow force-disabling congestion control, as
this is bad for queueing and fairness.

3 years agoHandle other places that use onion handshake type values
Mike Perry [Fri, 5 Nov 2021 20:50:39 +0000 (20:50 +0000)] 
Handle other places that use onion handshake type values

We want ntor and ntorv3 to use the same queues and stats.

3 years agoExtend info argument updates for non-ntorv3 cases
Mike Perry [Thu, 4 Nov 2021 19:57:57 +0000 (19:57 +0000)] 
Extend info argument updates for non-ntorv3 cases

3 years agoCongestion control usage of negotiated params
Mike Perry [Thu, 4 Nov 2021 00:47:42 +0000 (00:47 +0000)] 
Congestion control usage of negotiated params

3 years agoProtover flag handling for congestion control negotiation
Mike Perry [Thu, 4 Nov 2021 00:47:19 +0000 (00:47 +0000)] 
Protover flag handling for congestion control negotiation

3 years agoHook up client usage of congestion control negotiation
Mike Perry [Thu, 4 Nov 2021 00:46:11 +0000 (00:46 +0000)] 
Hook up client usage of congestion control negotiation

3 years agoImplement congestion control parameter negotiation
Mike Perry [Thu, 4 Nov 2021 00:44:38 +0000 (00:44 +0000)] 
Implement congestion control parameter negotiation

3 years agoAdd circuit param payload definitions to trunnel
Mike Perry [Thu, 4 Nov 2021 00:01:33 +0000 (00:01 +0000)] 
Add circuit param payload definitions to trunnel

3 years agoConvert TODO into TODO-324 for better visibility.
Nick Mathewson [Tue, 14 Sep 2021 21:23:31 +0000 (17:23 -0400)] 
Convert TODO into TODO-324 for better visibility.

3 years agoAdd stub argument for constructing congestion_control_t
Nick Mathewson [Tue, 14 Sep 2021 21:13:05 +0000 (17:13 -0400)] 
Add stub argument for constructing congestion_control_t

3 years agoNegotiated circuit parameters must pass from worker.
Nick Mathewson [Tue, 14 Sep 2021 21:06:30 +0000 (17:06 -0400)] 
Negotiated circuit parameters must pass from worker.

3 years agoUse protover to signal support for ntor3 + congestion control.
Nick Mathewson [Tue, 14 Sep 2021 20:31:48 +0000 (16:31 -0400)] 
Use protover to signal support for ntor3 + congestion control.

3 years agoImplement core of ntor3 negotiation.
Nick Mathewson [Tue, 14 Sep 2021 19:01:45 +0000 (15:01 -0400)] 
Implement core of ntor3 negotiation.

There are a lot of TODOs about what to send, whom to send it to, and
etc.

3 years agoAdd an exported struct to onion handshakes for circuits params
Nick Mathewson [Tue, 14 Sep 2021 19:15:30 +0000 (15:15 -0400)] 
Add an exported struct to onion handshakes for circuits params

THis will eventually hold the congestion control parameters that we
negotiated, plus whatever else is relevant.

3 years agoAdd a size argument for the buffer on onion handshake functions
Nick Mathewson [Tue, 14 Sep 2021 18:19:22 +0000 (14:19 -0400)] 
Add a size argument for the buffer on onion handshake functions

3 years agoMerge branch 'tor-gitlab/mr/531'
David Goulet [Wed, 16 Feb 2022 18:59:37 +0000 (13:59 -0500)] 
Merge branch 'tor-gitlab/mr/531'

3 years agodirauth: Reject EOL 0.3.5.x relays
David Goulet [Mon, 14 Feb 2022 18:40:45 +0000 (13:40 -0500)] 
dirauth: Reject EOL 0.3.5.x relays

Closes #40559

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agodns: Do not trigger overload general on DNS timeout
David Goulet [Mon, 14 Feb 2022 18:20:53 +0000 (13:20 -0500)] 
dns: Do not trigger overload general on DNS timeout

This was missed in #40527 when the DNS timeout overload general signal
was removed.

Closes #40564

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agoMerge branch 'tor-gitlab/mr/518'
David Goulet [Wed, 9 Feb 2022 15:36:26 +0000 (10:36 -0500)] 
Merge branch 'tor-gitlab/mr/518'

3 years agokist: Don't try to flush empty outbuf
David Goulet [Tue, 8 Feb 2022 14:31:17 +0000 (09:31 -0500)] 
kist: Don't try to flush empty outbuf

It is possible that a scheduled channel ended up with 0 bytes in its
outbuf after the scheduling loop and having an outbuf table entry
indicating that we need to flush bytes on the wire after the loop.

This lead to attempt to write 0 bytes up to the TLS layer that would
prevent such action.

All in all, this fixes wasted CPU cycles on attempting to flush nothing.

Fixes #40548

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agonss: Don't write empty payload on the wire
David Goulet [Tue, 8 Feb 2022 14:30:50 +0000 (09:30 -0500)] 
nss: Don't write empty payload on the wire

Part of #40548

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agoAdd a changes file for exit notice redesign (40529)
Nick Mathewson [Mon, 7 Feb 2022 16:37:50 +0000 (11:37 -0500)] 
Add a changes file for exit notice redesign (40529)

3 years agoMerge remote-tracking branch 'tor-gitlab/mr/522'
Nick Mathewson [Mon, 7 Feb 2022 16:35:12 +0000 (11:35 -0500)] 
Merge remote-tracking branch 'tor-gitlab/mr/522'

3 years agomakefile: New README.md file name
David Goulet [Mon, 7 Feb 2022 15:07:33 +0000 (10:07 -0500)] 
makefile: New README.md file name

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agoreadme: Update and modernize with markdown
David Goulet [Mon, 7 Feb 2022 14:45:27 +0000 (09:45 -0500)] 
readme: Update and modernize with markdown

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agoUse more stable Web Archive links
n_user [Sun, 6 Feb 2022 21:20:22 +0000 (21:20 +0000)] 
Use more stable Web Archive links

3 years agoRemove unmaintained versions from CI and scripts
David Goulet [Fri, 4 Feb 2022 18:00:56 +0000 (13:00 -0500)] 
Remove unmaintained versions from CI and scripts

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agochangelog: Forward port 0.4.5 and 0.4.6 ChangeLogs
David Goulet [Fri, 4 Feb 2022 17:54:42 +0000 (12:54 -0500)] 
changelog: Forward port 0.4.5 and 0.4.6 ChangeLogs

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agoMerge branch 'maint-0.4.6'
David Goulet [Fri, 4 Feb 2022 17:36:40 +0000 (12:36 -0500)] 
Merge branch 'maint-0.4.6'

3 years agoversion: Bump version to 0.4.6.10-dev
Tor CI Release [Fri, 4 Feb 2022 16:29:20 +0000 (16:29 +0000)] 
version: Bump version to 0.4.6.10-dev

3 years agoMerge branch 'maint-0.4.5' into maint-0.4.6
David Goulet [Fri, 4 Feb 2022 17:36:19 +0000 (12:36 -0500)] 
Merge branch 'maint-0.4.5' into maint-0.4.6

3 years agoversion: Bump version to 0.4.5.12-dev
Tor CI Release [Fri, 4 Feb 2022 16:29:20 +0000 (16:29 +0000)] 
version: Bump version to 0.4.5.12-dev

3 years agoMerge branch 'maint-0.4.6'
David Goulet [Fri, 4 Feb 2022 16:10:17 +0000 (11:10 -0500)] 
Merge branch 'maint-0.4.6'

3 years agoversion: Bump version to 0.4.6.10
Tor CI Release [Fri, 4 Feb 2022 16:00:39 +0000 (16:00 +0000)] 
version: Bump version to 0.4.6.10

3 years agoMerge branch 'maint-0.4.5' into maint-0.4.6
David Goulet [Fri, 4 Feb 2022 16:09:38 +0000 (11:09 -0500)] 
Merge branch 'maint-0.4.5' into maint-0.4.6

3 years agoversion: Bump version to 0.4.5.12
Tor CI Release [Fri, 4 Feb 2022 16:00:33 +0000 (16:00 +0000)] 
version: Bump version to 0.4.5.12

3 years agoMerge branch 'maint-0.4.6'
David Goulet [Fri, 4 Feb 2022 16:07:34 +0000 (11:07 -0500)] 
Merge branch 'maint-0.4.6'

3 years agoMerge branch 'maint-0.4.5' into maint-0.4.6
David Goulet [Fri, 4 Feb 2022 16:07:34 +0000 (11:07 -0500)] 
Merge branch 'maint-0.4.5' into maint-0.4.6

3 years agofallbackdir: Update list generated on February 04, 2022
Tor CI Release [Fri, 4 Feb 2022 15:49:03 +0000 (15:49 +0000)] 
fallbackdir: Update list generated on February 04, 2022

3 years agoUpdate geoip files to match ipfire location db, 2022/02/04.
Tor CI Release [Fri, 4 Feb 2022 15:46:27 +0000 (15:46 +0000)] 
Update geoip files to match ipfire location db, 2022/02/04.

3 years agoMerge branch 'maint-0.4.6'
David Goulet [Fri, 4 Feb 2022 15:56:33 +0000 (10:56 -0500)] 
Merge branch 'maint-0.4.6'

3 years agoMerge branch 'maint-0.4.5' into maint-0.4.6
David Goulet [Fri, 4 Feb 2022 15:56:33 +0000 (10:56 -0500)] 
Merge branch 'maint-0.4.5' into maint-0.4.6

3 years agoUpdate geoip files to match ipfire location db, 2021/12/15.
Tor CI Release [Wed, 15 Dec 2021 16:17:47 +0000 (16:17 +0000)] 
Update geoip files to match ipfire location db, 2021/12/15.

3 years agoMerge branch 'maint-0.4.6'
David Goulet [Fri, 4 Feb 2022 15:18:26 +0000 (10:18 -0500)] 
Merge branch 'maint-0.4.6'

3 years agoMerge branch 'maint-0.4.5' into maint-0.4.6
David Goulet [Fri, 4 Feb 2022 15:18:25 +0000 (10:18 -0500)] 
Merge branch 'maint-0.4.5' into maint-0.4.6

3 years agofallbackdir: Update list generated on December 15, 2021
Tor CI Release [Wed, 15 Dec 2021 16:29:45 +0000 (16:29 +0000)] 
fallbackdir: Update list generated on December 15, 2021

3 years agoUpdate unstable links to use Web Archive
n_user [Thu, 3 Feb 2022 14:34:31 +0000 (14:34 +0000)] 
Update unstable links to use Web Archive

3 years agochanges: Remove uneeded file due to empty merge forward
David Goulet [Thu, 3 Feb 2022 13:31:49 +0000 (08:31 -0500)] 
changes: Remove uneeded file due to empty merge forward

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agoMerge branch 'maint-0.4.6'
David Goulet [Thu, 3 Feb 2022 13:30:59 +0000 (08:30 -0500)] 
Merge branch 'maint-0.4.6'

3 years agoMerge branch 'maint-0.4.5' into maint-0.4.6
David Goulet [Thu, 3 Feb 2022 13:30:40 +0000 (08:30 -0500)] 
Merge branch 'maint-0.4.5' into maint-0.4.6

3 years agohs: Double quote the metrics label value
David Goulet [Wed, 2 Feb 2022 18:51:22 +0000 (13:51 -0500)] 
hs: Double quote the metrics label value

Fixes #40552

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agoRedesign tor-exit-notice
n_user [Wed, 2 Feb 2022 00:33:22 +0000 (00:33 +0000)] 
Redesign tor-exit-notice

3 years agoMerge remote-tracking branch 'tor-gitlab/mr/506' into main
Alexander Færøy [Tue, 25 Jan 2022 21:53:30 +0000 (21:53 +0000)] 
Merge remote-tracking branch 'tor-gitlab/mr/506' into main

3 years agoMerge remote-tracking branch 'tor-gitlab/mr/507' into main
Alexander Færøy [Tue, 25 Jan 2022 21:52:31 +0000 (21:52 +0000)] 
Merge remote-tracking branch 'tor-gitlab/mr/507' into main

3 years agoMerge remote-tracking branch 'tor-gitlab/mr/513' into main
Alexander Færøy [Tue, 25 Jan 2022 21:42:44 +0000 (21:42 +0000)] 
Merge remote-tracking branch 'tor-gitlab/mr/513' into main

3 years agodoc: More clarification of the release process steps
David Goulet [Mon, 24 Jan 2022 18:18:39 +0000 (13:18 -0500)] 
doc: More clarification of the release process steps

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agoTry to clarify maint vs release issues on ReleasingTor.md
Nick Mathewson [Mon, 24 Jan 2022 16:51:08 +0000 (11:51 -0500)] 
Try to clarify maint vs release issues on ReleasingTor.md

I've tried to clarify what happens on "maint" vs what happens on
"release".  I'm not sure I've got it right wrt the patches generated
by the scripts, though, so please review carefully and second-guess
everything I'm saying here. :)

3 years agoMerge branch 'maint-0.4.5' into maint-0.4.6
David Goulet [Mon, 24 Jan 2022 15:49:41 +0000 (10:49 -0500)] 
Merge branch 'maint-0.4.5' into maint-0.4.6

3 years agoMerge branch 'maint-0.4.6'
David Goulet [Mon, 24 Jan 2022 15:49:41 +0000 (10:49 -0500)] 
Merge branch 'maint-0.4.6'

3 years agoMerge branch 'maint-0.3.5' into maint-0.4.5
David Goulet [Mon, 24 Jan 2022 15:49:32 +0000 (10:49 -0500)] 
Merge branch 'maint-0.3.5' into maint-0.4.5

3 years agoversion: Bump version to 0.3.5.18 maint-0.3.5
David Goulet [Mon, 24 Jan 2022 15:47:29 +0000 (10:47 -0500)] 
version: Bump version to 0.3.5.18

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agofallbackdir: Update list generated on January 24, 2022
David Goulet [Mon, 24 Jan 2022 15:35:02 +0000 (10:35 -0500)] 
fallbackdir: Update list generated on January 24, 2022

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agogeoip: Update to match ipfire location db, 2022/01/24.
David Goulet [Mon, 24 Jan 2022 15:31:43 +0000 (10:31 -0500)] 
geoip: Update to match ipfire location db, 2022/01/24.

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agoconn: add ClientHello Padding TLS extension
pseudonymisaTor [Sun, 23 Jan 2022 09:24:28 +0000 (09:24 +0000)] 
conn: add ClientHello Padding TLS extension

3 years agoUse an alternative solution to the warning in trace_probes_cc.c
Nick Mathewson [Thu, 20 Jan 2022 19:46:38 +0000 (14:46 -0500)] 
Use an alternative solution to the warning in trace_probes_cc.c

3 years agoResolve typedef conflict from congestion_control_t
Nick Mathewson [Thu, 20 Jan 2022 19:22:00 +0000 (14:22 -0500)] 
Resolve typedef conflict from congestion_control_t

Resumes being able to build on old / esoteric gcc versions.

Fixes bug 40550; bugfix on 0.4.7.1-alpha.

3 years agorelay: Fix memory leak on BUG() code path
David Goulet [Wed, 19 Jan 2022 18:02:33 +0000 (13:02 -0500)] 
relay: Fix memory leak on BUG() code path

Introduced in bf10206e9e23ac0ded2cc9727666696ea25d5636 which is not
released yet thus no changes file.

Found by Coverity with cid #1495786.

Fixes #40532

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agoMerge branch 'maint-0.4.5' into maint-0.4.6
David Goulet [Wed, 19 Jan 2022 18:56:43 +0000 (13:56 -0500)] 
Merge branch 'maint-0.4.5' into maint-0.4.6

3 years agoMerge branch 'maint-0.4.6'
David Goulet [Wed, 19 Jan 2022 18:56:43 +0000 (13:56 -0500)] 
Merge branch 'maint-0.4.6'

3 years agotest: Remove HSv2 protover specific test
David Goulet [Wed, 19 Jan 2022 18:36:23 +0000 (13:36 -0500)] 
test: Remove HSv2 protover specific test

HSv2 is not advertised as a supported protocol version anymore.

This was introduced with the merge-forward of commit 72041c63064b461e
which didn't fix the unit test.

Fixes #40549

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agoMerge branch 'maint-0.4.5' into maint-0.4.6
David Goulet [Tue, 18 Jan 2022 18:15:38 +0000 (13:15 -0500)] 
Merge branch 'maint-0.4.5' into maint-0.4.6

3 years agoMerge branch 'maint-0.4.6'
David Goulet [Tue, 18 Jan 2022 18:15:38 +0000 (13:15 -0500)] 
Merge branch 'maint-0.4.6'

3 years agoMerge branch 'maint-0.3.5' into maint-0.4.5
David Goulet [Tue, 18 Jan 2022 18:15:38 +0000 (13:15 -0500)] 
Merge branch 'maint-0.3.5' into maint-0.4.5

3 years agoMerge branch 'tor-gitlab/mr/511' into maint-0.3.5
David Goulet [Tue, 18 Jan 2022 18:15:33 +0000 (13:15 -0500)] 
Merge branch 'tor-gitlab/mr/511' into maint-0.3.5

3 years agoMerge branch 'maint-0.4.5' into maint-0.4.6
David Goulet [Tue, 18 Jan 2022 18:15:29 +0000 (13:15 -0500)] 
Merge branch 'maint-0.4.5' into maint-0.4.6

3 years agoMerge branch 'maint-0.4.6'
David Goulet [Tue, 18 Jan 2022 18:15:29 +0000 (13:15 -0500)] 
Merge branch 'maint-0.4.6'

3 years agoMerge branch 'maint-0.3.5' into maint-0.4.5
David Goulet [Tue, 18 Jan 2022 18:15:29 +0000 (13:15 -0500)] 
Merge branch 'maint-0.3.5' into maint-0.4.5

3 years agoMerge branch 'tor-gitlab/mr/510' into maint-0.3.5
David Goulet [Tue, 18 Jan 2022 18:15:23 +0000 (13:15 -0500)] 
Merge branch 'tor-gitlab/mr/510' into maint-0.3.5

3 years agoMerge branch 'maint-0.4.5' into maint-0.4.6
David Goulet [Tue, 18 Jan 2022 18:12:35 +0000 (13:12 -0500)] 
Merge branch 'maint-0.4.5' into maint-0.4.6

3 years agoMerge branch 'maint-0.4.6'
David Goulet [Tue, 18 Jan 2022 18:12:35 +0000 (13:12 -0500)] 
Merge branch 'maint-0.4.6'

3 years agoMerge branch 'maint-0.3.5' into maint-0.4.5
David Goulet [Tue, 18 Jan 2022 18:12:13 +0000 (13:12 -0500)] 
Merge branch 'maint-0.3.5' into maint-0.4.5

3 years agoUpdate new relay blogpost URL
Jérôme Charaoui [Mon, 10 Jan 2022 15:16:24 +0000 (15:16 +0000)] 
Update new relay blogpost URL

This removes the '/blog/' URL component which relies on a
redirection since the blog has been migrated to Lektor

3 years agomain: Update a dead URL in a log notice
David Goulet [Tue, 18 Jan 2022 17:51:52 +0000 (12:51 -0500)] 
main: Update a dead URL in a log notice

Change https://www.torproject.org/download/download#warning to
https://support.torproject.org/faq/staying-anonymous/

Closes #40544

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agorelay: Don't advertise HSv2 protocol version
David Goulet [Thu, 4 Nov 2021 18:44:58 +0000 (14:44 -0400)] 
relay: Don't advertise HSv2 protocol version

We removed HSIntro=3 and HSDir=1 that are v2 specific. Since 0.3.5.17,
we do not support introducing or being a directory for onion service v2.

Closes #40509

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agoImprove formatting of scripts/ci/ci-driver.sh
skaluzka [Thu, 6 Jan 2022 20:25:30 +0000 (21:25 +0100)] 
Improve formatting of scripts/ci/ci-driver.sh

Add and remove few empty lines, covert all tabs to 4 spaces.
No real code changes here.

Signed-off-by: skaluzka <skaluzka@protonmail.com>
3 years agoAdd missing "Tor Project, Inc." to man files
skaluzka [Thu, 6 Jan 2022 19:57:17 +0000 (20:57 +0100)] 
Add missing "Tor Project, Inc." to man files

Signed-off-by: skaluzka <skaluzka@protonmail.com>
3 years agoMerge remote-tracking branch 'tor-gitlab/mr/503' into main
Alexander Færøy [Fri, 17 Dec 2021 16:53:47 +0000 (16:53 +0000)] 
Merge remote-tracking branch 'tor-gitlab/mr/503' into main

3 years agoconfigure: Remove typo created by CI patch
David Goulet [Thu, 16 Dec 2021 18:03:51 +0000 (13:03 -0500)] 
configure: Remove typo created by CI patch

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agoMerge branch 'maint-0.4.6'
David Goulet [Thu, 16 Dec 2021 18:03:43 +0000 (13:03 -0500)] 
Merge branch 'maint-0.4.6'

3 years agoconfigure: Remove typo created by CI patch
David Goulet [Thu, 16 Dec 2021 18:03:23 +0000 (13:03 -0500)] 
configure: Remove typo created by CI patch

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agoMerge remote-tracking branch 'tor-gitlab/mr/504'
Nick Mathewson [Thu, 16 Dec 2021 17:36:35 +0000 (12:36 -0500)] 
Merge remote-tracking branch 'tor-gitlab/mr/504'

3 years agoMerge branch 'maint-0.4.6'
David Goulet [Thu, 16 Dec 2021 17:22:44 +0000 (12:22 -0500)] 
Merge branch 'maint-0.4.6'

3 years agodoc: One more poings in ReleasingTor.md
David Goulet [Thu, 16 Dec 2021 17:22:15 +0000 (12:22 -0500)] 
doc: One more poings in ReleasingTor.md

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agochangelog: Forward port ChangeLogs and ReleaseNotes
David Goulet [Thu, 16 Dec 2021 17:16:18 +0000 (12:16 -0500)] 
changelog: Forward port ChangeLogs and ReleaseNotes

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agodoc: Update ReleasingTor.md with missing steps
David Goulet [Thu, 16 Dec 2021 17:14:52 +0000 (12:14 -0500)] 
doc: Update ReleasingTor.md with missing steps

Signed-off-by: David Goulet <dgoulet@torproject.org>
3 years agoversion: Bump version to 0.4.6.9-dev
Tor CI Release [Thu, 16 Dec 2021 15:01:28 +0000 (15:01 +0000)] 
version: Bump version to 0.4.6.9-dev

3 years agoversion: Bump version to 0.4.7.3-alpha-dev
Tor CI Release [Thu, 16 Dec 2021 15:01:28 +0000 (15:01 +0000)] 
version: Bump version to 0.4.7.3-alpha-dev