]> git.ipfire.org Git - thirdparty/tor.git/log
thirdparty/tor.git
11 years agoChanges file for Andrea's work on 6456
Nick Mathewson [Tue, 4 Nov 2014 14:59:25 +0000 (09:59 -0500)] 
Changes file for Andrea's work on 6456

11 years agoFix a wide line I introduced
Nick Mathewson [Tue, 4 Nov 2014 14:56:46 +0000 (09:56 -0500)] 
Fix a wide line I introduced

11 years agoFix unused-argument warnings
Nick Mathewson [Tue, 4 Nov 2014 14:54:51 +0000 (09:54 -0500)] 
Fix unused-argument warnings

11 years agoMerge remote-tracking branch 'andrea/ticket6456'
Nick Mathewson [Tue, 4 Nov 2014 14:49:35 +0000 (09:49 -0500)] 
Merge remote-tracking branch 'andrea/ticket6456'

Somewhat tricky conflicts:
src/or/config.c

Also, s/test_assert/tt_assert in test_config.c

11 years agoUpdate verbiage in README to mention autogen.sh
Nick Mathewson [Tue, 4 Nov 2014 14:01:46 +0000 (09:01 -0500)] 
Update verbiage in README to mention autogen.sh

Closes ticket 13190

11 years agoMerge branch 'bug13315_squashed'
Nick Mathewson [Tue, 4 Nov 2014 05:48:25 +0000 (00:48 -0500)] 
Merge branch 'bug13315_squashed'

Conflicts:
src/or/buffers.c

11 years agofix indentation
Nick Mathewson [Tue, 4 Nov 2014 05:46:32 +0000 (00:46 -0500)] 
fix indentation

11 years agoUse correct argument types for inet_pton.
Nick Mathewson [Tue, 4 Nov 2014 05:45:14 +0000 (00:45 -0500)] 
Use correct argument types for inet_pton.

(I blame whoever decided that using a void* for a union was a good
idea.)

11 years agoSending 'Not allowed' error message before closing the connection.
rl1987 [Tue, 21 Oct 2014 17:50:32 +0000 (20:50 +0300)] 
Sending 'Not allowed' error message before closing the connection.

11 years agoAdding changes file for 13315.
rl1987 [Tue, 14 Oct 2014 19:09:44 +0000 (22:09 +0300)] 
Adding changes file for 13315.

11 years agoChecking if FQDN is actually IPv6 address string and handling that case.
rl1987 [Tue, 14 Oct 2014 18:56:04 +0000 (21:56 +0300)] 
Checking if FQDN is actually IPv6 address string and handling that case.

11 years agoAdding helper function that checks if string is a valid IPv6 address.
rl1987 [Tue, 14 Oct 2014 18:53:48 +0000 (21:53 +0300)] 
Adding helper function that checks if string is a valid IPv6 address.

11 years agoValidating SOCKS5 hostname more correctly.
rl1987 [Sun, 12 Oct 2014 18:04:15 +0000 (21:04 +0300)] 
Validating SOCKS5 hostname more correctly.

11 years agoIntroducing helper function to validate IPv4 address strings.
rl1987 [Sun, 12 Oct 2014 17:39:00 +0000 (20:39 +0300)] 
Introducing helper function to validate IPv4 address strings.

11 years agoIntroducing helper function to validate DNS name strings.
rl1987 [Sun, 12 Oct 2014 16:33:08 +0000 (19:33 +0300)] 
Introducing helper function to validate DNS name strings.

11 years agoMerge remote-tracking branch 'public/bug13214_025_squashed'
Nick Mathewson [Tue, 4 Nov 2014 05:24:56 +0000 (00:24 -0500)] 
Merge remote-tracking branch 'public/bug13214_025_squashed'

11 years agoCheck descriptor ID in addition to HS ID when saving a v2 hs descriptor
Nick Mathewson [Mon, 3 Nov 2014 19:02:47 +0000 (14:02 -0500)] 
Check descriptor ID in addition to HS ID when saving a v2 hs descriptor

Fixes bug 13214; reported by 'special'.

11 years agoAdd comments and rename intro_nodes list in rend_services_introduce()
David Goulet [Tue, 4 Nov 2014 05:19:31 +0000 (00:19 -0500)] 
Add comments and rename intro_nodes list in rend_services_introduce()

(No changes file needed: this patch just adds comments and renames
variables. This is ticket 13646. message taken from the ticket. -Nick)

11 years agoUse tor_malloc_zero(x), not tor_calloc(x,sizeof(char))
Nick Mathewson [Sun, 2 Nov 2014 17:08:51 +0000 (12:08 -0500)] 
Use tor_malloc_zero(x), not tor_calloc(x,sizeof(char))

(Also, fixes a wide line.)

11 years agoMerge branch 'calloc2'
Nick Mathewson [Sun, 2 Nov 2014 17:03:11 +0000 (12:03 -0500)] 
Merge branch 'calloc2'

11 years agoApply new calloc coccinelle patch
Nick Mathewson [Sun, 2 Nov 2014 16:56:02 +0000 (11:56 -0500)] 
Apply new calloc coccinelle patch

11 years agoUse the | trick to save a comparison in our calloc check.
Nick Mathewson [Sun, 2 Nov 2014 16:48:08 +0000 (11:48 -0500)] 
Use the | trick to save a comparison in our calloc check.

11 years agoSwitch to a < comparison for our calloc check; explain how it works
Nick Mathewson [Sun, 2 Nov 2014 16:42:33 +0000 (11:42 -0500)] 
Switch to a < comparison for our calloc check; explain how it works

11 years agoDocument the calloc function overflow check.
Mansour Moufid [Sun, 19 Oct 2014 17:12:11 +0000 (13:12 -0400)] 
Document the calloc function overflow check.

11 years agoRemove a duplicate comment.
Mansour Moufid [Sun, 19 Oct 2014 16:59:28 +0000 (12:59 -0400)] 
Remove a duplicate comment.

11 years agoAdd a rule to the calloc semantic patch for argument ordering.
Mansour Moufid [Sun, 19 Oct 2014 16:36:46 +0000 (12:36 -0400)] 
Add a rule to the calloc semantic patch for argument ordering.

11 years agoThe second argument to tor_calloc should be a constant.
Mansour Moufid [Sun, 19 Oct 2014 16:20:36 +0000 (12:20 -0400)] 
The second argument to tor_calloc should be a constant.

Just like the conventional calloc.

11 years agoRefactor the calloc semantic patch.
Mansour Moufid [Sun, 19 Oct 2014 16:18:31 +0000 (12:18 -0400)] 
Refactor the calloc semantic patch.

This does not change its effects.

11 years agoRefactor the tor_reallocarray_ overflow check.
Mansour Moufid [Sun, 19 Oct 2014 16:11:53 +0000 (12:11 -0400)] 
Refactor the tor_reallocarray_ overflow check.

11 years agoRefactor the tor_calloc_ overflow check.
Mansour Moufid [Sun, 19 Oct 2014 16:04:26 +0000 (12:04 -0400)] 
Refactor the tor_calloc_ overflow check.

11 years agoMerge remote-tracking branch 'public/bug13399'
Nick Mathewson [Sat, 1 Nov 2014 21:04:04 +0000 (17:04 -0400)] 
Merge remote-tracking branch 'public/bug13399'

11 years agoUse digest256_len in networkstatus_copy_old_consensus_info()
Nick Mathewson [Fri, 31 Oct 2014 15:36:31 +0000 (11:36 -0400)] 
Use digest256_len in networkstatus_copy_old_consensus_info()

Now, if a router ever changes its microdescriptor, but the new
microdescriptor SHA256 hash has the same 160-bit prefix as the old
one, we treat it as a new microdescriptor when deciding whether to
copy status information.

(This function also is used to compare SHA1 digests of router
descriptors, but don't worry: the descriptor_digest field either holds
a SHA256 hash, or a SHA1 hash padded with 0 bytes.)

11 years agoUse digest256map for computing microdescriptor downloads
Nick Mathewson [Fri, 31 Oct 2014 15:32:32 +0000 (11:32 -0400)] 
Use digest256map for computing microdescriptor downloads

11 years agoMerge branch 'digest256map'
Nick Mathewson [Fri, 31 Oct 2014 15:15:49 +0000 (11:15 -0400)] 
Merge branch 'digest256map'

11 years agoRefactor {str,digest}map into a common implementation; add digest256map
Nick Mathewson [Fri, 31 Oct 2014 14:54:12 +0000 (10:54 -0400)] 
Refactor {str,digest}map into a common implementation; add digest256map

Needed for #13399.

11 years agoRepair format_changelog.py drupal breaks a little more. Drupal is weird.
Nick Mathewson [Fri, 31 Oct 2014 13:13:08 +0000 (09:13 -0400)] 
Repair format_changelog.py drupal breaks a little more. Drupal is weird.

11 years agoRe-run latest git trunnel to get fix from teor for #13577
Nick Mathewson [Fri, 31 Oct 2014 12:56:14 +0000 (08:56 -0400)] 
Re-run latest git trunnel to get fix from teor for #13577

11 years agoMerge commit '13298d90a90dc62d21d38f910171c9b57a8f0273'
Nick Mathewson [Fri, 31 Oct 2014 12:52:07 +0000 (08:52 -0400)] 
Merge commit '13298d90a90dc62d21d38f910171c9b57a8f0273'

11 years agoTeach format_changelog.py --blog about drupal <!--break-->
Nick Mathewson [Thu, 30 Oct 2014 21:08:42 +0000 (17:08 -0400)] 
Teach format_changelog.py --blog about drupal <!--break-->

11 years agoTwiddle the format_changelog.py option defaults.
Nick Mathewson [Thu, 30 Oct 2014 20:54:10 +0000 (16:54 -0400)] 
Twiddle the format_changelog.py option defaults.

11 years agoNew empty changelog section
Nick Mathewson [Thu, 30 Oct 2014 17:56:36 +0000 (13:56 -0400)] 
New empty changelog section

11 years agoBump version to 0.2.6.1-alpha-dev
Nick Mathewson [Thu, 30 Oct 2014 14:25:24 +0000 (10:25 -0400)] 
Bump version to 0.2.6.1-alpha-dev

11 years agoClarify 13476 changelog (From sebastian) tor-0.2.6.1-alpha
Nick Mathewson [Thu, 30 Oct 2014 13:56:40 +0000 (09:56 -0400)] 
Clarify 13476 changelog (From sebastian)

11 years agoFix a typo in the ChangeLog, spotted by Yawning
Nick Mathewson [Thu, 30 Oct 2014 13:52:36 +0000 (09:52 -0400)] 
Fix a typo in the ChangeLog, spotted by Yawning

11 years agoBump version to 0.2.6.1-alpha
Nick Mathewson [Thu, 30 Oct 2014 12:58:58 +0000 (08:58 -0400)] 
Bump version to 0.2.6.1-alpha

11 years agoFinal(?) tweaks to 0.2.6.1-alpha changelog
Nick Mathewson [Thu, 30 Oct 2014 12:54:44 +0000 (08:54 -0400)] 
Final(?) tweaks to 0.2.6.1-alpha changelog

11 years agoSilence spurious clang warnings
teor [Sun, 26 Oct 2014 03:43:55 +0000 (14:43 +1100)] 
Silence spurious clang warnings

Silence clang warnings under --enable-expensive-hardening, including:
  + implicit truncation of 64 bit values to 32 bit;
  + const char assignment to self;
  + tautological compare; and
  + additional parentheses around equality tests. (gcc uses these to
    silence assignment, so clang warns when they're present in an
    equality test. But we need to use extra parentheses in macros to
    isolate them from other code).

11 years agoMake 0.2.6.1-alpha ChangeLog prettier.
George Kadianakis [Wed, 29 Oct 2014 17:26:26 +0000 (17:26 +0000)] 
Make 0.2.6.1-alpha ChangeLog prettier.

11 years agoAdd a draft blurb for 0.2.6.1-alpha
Nick Mathewson [Wed, 29 Oct 2014 14:24:13 +0000 (10:24 -0400)] 
Add a draft blurb for 0.2.6.1-alpha

11 years agoReinvoke format_changelog.py
Nick Mathewson [Wed, 29 Oct 2014 14:19:10 +0000 (10:19 -0400)] 
Reinvoke format_changelog.py

Also, tweak it so that it puts major deprecations and requirements
early in the changelog.

11 years agoa few more style fixes for the changelog
Nick Mathewson [Wed, 29 Oct 2014 14:18:48 +0000 (10:18 -0400)] 
a few more style fixes for the changelog

11 years agoEdit changelog entries for terseness and style.
Nick Mathewson [Wed, 29 Oct 2014 14:17:27 +0000 (10:17 -0400)] 
Edit changelog entries for terseness and style.

11 years agoAdd in a few more changes entries for 0.2.6.1-alpha
Nick Mathewson [Wed, 29 Oct 2014 13:06:55 +0000 (09:06 -0400)] 
Add in a few more changes entries for 0.2.6.1-alpha

(Also resort and rewrap)

11 years agoTrack down "bugfix on version" entries for 0.2.6.1-alpha changelog
Nick Mathewson [Wed, 29 Oct 2014 12:50:13 +0000 (08:50 -0400)] 
Track down "bugfix on version" entries for 0.2.6.1-alpha changelog

11 years agoAdd another year to our copyright dates.
Nick Mathewson [Tue, 28 Oct 2014 19:28:14 +0000 (15:28 -0400)] 
Add another year to our copyright dates.

Because in 95 years, we or our successors will surely care about
enforcing the BSD license terms on this code.  Right?

11 years agoAdding changes file for 9708.
rl1987 [Sun, 26 Oct 2014 17:48:22 +0000 (19:48 +0200)] 
Adding changes file for 9708.

11 years agoInitial version of doc/TUNING.
rl1987 [Sun, 26 Oct 2014 17:37:48 +0000 (19:37 +0200)] 
Initial version of doc/TUNING.

11 years agoUpdating message that warns about running out of sockets we can use.
rl1987 [Sun, 26 Oct 2014 14:45:15 +0000 (16:45 +0200)] 
Updating message that warns about running out of sockets we can use.

11 years agoFix smartlist_choose_node_by_bandwidth() so that it rejects ORs with BadExit flag.
rl1987 [Sun, 26 Oct 2014 18:56:15 +0000 (20:56 +0200)] 
Fix smartlist_choose_node_by_bandwidth() so that it rejects ORs with BadExit flag.

11 years agoMerge remote-tracking branch 'rl1987/feature10427'
Nick Mathewson [Tue, 28 Oct 2014 18:03:40 +0000 (14:03 -0400)] 
Merge remote-tracking branch 'rl1987/feature10427'

11 years agoMerge remote-tracking branch 'sebastian/bug13286'
Nick Mathewson [Mon, 27 Oct 2014 16:12:16 +0000 (12:12 -0400)] 
Merge remote-tracking branch 'sebastian/bug13286'

11 years agoStart on an 0.2.6.1-alpha changelog
Nick Mathewson [Mon, 27 Oct 2014 15:27:52 +0000 (11:27 -0400)] 
Start on an 0.2.6.1-alpha changelog

I concatenated the remaining changes/* files, removed them, made the
headings more uniform, then told format_changelog.py to sort,
collate, and wrap them.

11 years agoRemove changes files that have already been merged in release-0.2.5
Nick Mathewson [Mon, 27 Oct 2014 15:09:41 +0000 (11:09 -0400)] 
Remove changes files that have already been merged in release-0.2.5

(This means that changes/* is now "everything that changed since
0.2.5.10".)

11 years agoTeach format_changelog.py to emit HTML.
Nick Mathewson [Mon, 27 Oct 2014 14:32:25 +0000 (10:32 -0400)] 
Teach format_changelog.py to emit HTML.

11 years agoRemove configure option to disable curve25519
Sebastian Hahn [Mon, 27 Oct 2014 13:37:50 +0000 (14:37 +0100)] 
Remove configure option to disable curve25519

By now, support in the network is widespread and it's time to require
more modern crypto on all Tor instances, whether they're clients or
servers. By doing this early in 0.2.6, we can be sure that at some point
all clients will have reasonable support.

11 years agoCongratulate relay operator when OR is first started
rl1987 [Sun, 26 Oct 2014 19:51:35 +0000 (21:51 +0200)] 
Congratulate relay operator when OR is first started

When Tor first generates identity keypair, emit a log message that
thanks for their participation and points to new Tor relay lifecycle
document.

11 years agoFix a crash bug introduced in 223d354e3.
Nick Mathewson [Sun, 26 Oct 2014 18:09:03 +0000 (14:09 -0400)] 
Fix a crash bug introduced in 223d354e3.

Arma found this and commented on #11243.  Bug not in any released
version of Tor.

11 years agoMerge remote-tracking branch 'origin/maint-0.2.5'
Nick Mathewson [Fri, 24 Oct 2014 13:23:53 +0000 (09:23 -0400)] 
Merge remote-tracking branch 'origin/maint-0.2.5'

11 years agobump version to 0.2.5.10-dev
Nick Mathewson [Fri, 24 Oct 2014 13:22:58 +0000 (09:22 -0400)] 
bump version to 0.2.5.10-dev

11 years agoForward-port changelog and release notes for 0.2.5.10
Nick Mathewson [Fri, 24 Oct 2014 13:21:40 +0000 (09:21 -0400)] 
Forward-port changelog and release notes for 0.2.5.10

11 years agoSwitch new time tests to use SIZEOF_TIME_T, not sizeof(time_t)
Nick Mathewson [Wed, 22 Oct 2014 16:57:21 +0000 (12:57 -0400)] 
Switch new time tests to use SIZEOF_TIME_T, not sizeof(time_t)

Otherwise, we get implicit conversion warning on some platforms.

11 years agoFix minor typos, two line lengths, and a repeated include
teor [Wed, 22 Oct 2014 15:35:46 +0000 (02:35 +1100)] 
Fix minor typos, two line lengths, and a repeated include

11 years agoFix a changes typo spotted by wfn
Nick Mathewson [Wed, 22 Oct 2014 15:02:56 +0000 (11:02 -0400)] 
Fix a changes typo spotted by wfn

11 years agoMerge remote-tracking branch 'public/bug11824_v2'
Nick Mathewson [Wed, 22 Oct 2014 15:01:50 +0000 (11:01 -0400)] 
Merge remote-tracking branch 'public/bug11824_v2'

11 years agoMerge remote-tracking branch 'public/ticket6938'
Nick Mathewson [Wed, 22 Oct 2014 14:14:03 +0000 (10:14 -0400)] 
Merge remote-tracking branch 'public/ticket6938'

Conflicts:
src/tools/tor-resolve.c

11 years agogive dist-master an alias
Roger Dingledine [Tue, 21 Oct 2014 20:01:29 +0000 (16:01 -0400)] 
give dist-master an alias

11 years agoMerge remote-tracking branch 'teor/bug13476-improve-time-handling'
Nick Mathewson [Tue, 21 Oct 2014 17:14:27 +0000 (13:14 -0400)] 
Merge remote-tracking branch 'teor/bug13476-improve-time-handling'

11 years agoConditionally compile time testing code based on integer size
teor [Mon, 20 Oct 2014 21:44:10 +0000 (08:44 +1100)] 
Conditionally compile time testing code based on integer size

11 years agoMerge remote-tracking branch 'teor/memwipe-more-keys'
Nick Mathewson [Mon, 20 Oct 2014 15:12:51 +0000 (11:12 -0400)] 
Merge remote-tracking branch 'teor/memwipe-more-keys'

11 years agoMerge remote-tracking branch 'origin/maint-0.2.5'
Nick Mathewson [Mon, 20 Oct 2014 14:33:53 +0000 (10:33 -0400)] 
Merge remote-tracking branch 'origin/maint-0.2.5'

This is an "ours" merge so we can leave the version in master alone.

11 years agobump maint-0.2.5 to 0.2.5.9-rc-dev
Nick Mathewson [Mon, 20 Oct 2014 14:32:09 +0000 (10:32 -0400)] 
bump maint-0.2.5 to 0.2.5.9-rc-dev

11 years agoMerge remote-tracking branch 'origin/maint-0.2.4' into maint-0.2.5
Nick Mathewson [Mon, 20 Oct 2014 14:31:20 +0000 (10:31 -0400)] 
Merge remote-tracking branch 'origin/maint-0.2.4' into maint-0.2.5

11 years agoWhoops, bump the version properly.
Nick Mathewson [Mon, 20 Oct 2014 14:29:16 +0000 (10:29 -0400)] 
Whoops, bump the version properly.

11 years agobump maint-0.2.4 to 0.2.4.25-dev
Nick Mathewson [Mon, 20 Oct 2014 14:24:21 +0000 (10:24 -0400)] 
bump maint-0.2.4 to 0.2.4.25-dev

11 years agoforward-port the 0.2.4.25 changelog to master changelog and releasenotes
Nick Mathewson [Mon, 20 Oct 2014 14:01:07 +0000 (10:01 -0400)] 
forward-port the 0.2.4.25 changelog to master changelog and releasenotes

11 years agoUse a macro to indicate "The ecdhe group we use by default".
Nick Mathewson [Mon, 20 Oct 2014 13:08:42 +0000 (09:08 -0400)] 
Use a macro to indicate "The ecdhe group we use by default".

This might make Coverity happier about the if statement where we
have a default case that's the same as one of the other cases. CID 1248515

11 years agoFix a use-after-free error in cleaned-up rouerlist code.
Nick Mathewson [Mon, 20 Oct 2014 13:04:53 +0000 (09:04 -0400)] 
Fix a use-after-free error in cleaned-up rouerlist code.

Bug not in any released tor.  This is CID 1248521

11 years agoexplain how to publish tarballs now that webwml has gone to git
Roger Dingledine [Mon, 20 Oct 2014 01:27:41 +0000 (21:27 -0400)] 
explain how to publish tarballs now that webwml has gone to git

11 years agoMerge remote-tracking branch 'origin/maint-0.2.5'
Nick Mathewson [Sun, 19 Oct 2014 19:40:25 +0000 (15:40 -0400)] 
Merge remote-tracking branch 'origin/maint-0.2.5'

11 years agoMerge remote-tracking branch 'origin/maint-0.2.4' into maint-0.2.5
Nick Mathewson [Sun, 19 Oct 2014 19:40:07 +0000 (15:40 -0400)] 
Merge remote-tracking branch 'origin/maint-0.2.4' into maint-0.2.5

11 years agoMerge remote-tracking branch 'origin/maint-0.2.3' into maint-0.2.4
Nick Mathewson [Sun, 19 Oct 2014 19:39:48 +0000 (15:39 -0400)] 
Merge remote-tracking branch 'origin/maint-0.2.3' into maint-0.2.4

11 years agoNote that our #13426 fix is also a #13471 fix.
Nick Mathewson [Sun, 19 Oct 2014 19:38:44 +0000 (15:38 -0400)] 
Note that our #13426 fix is also a #13471 fix.

See also http://marc.info/?l=openssl-dev&m=141357408522028&w=2

11 years agoformat_changelog: Sort sections case-insensitively
Nick Mathewson [Sun, 19 Oct 2014 18:19:22 +0000 (14:19 -0400)] 
format_changelog: Sort sections case-insensitively

11 years agoformat_changelog.py: fix spelling of "hyphenatable"
Nick Mathewson [Sun, 19 Oct 2014 16:59:17 +0000 (12:59 -0400)] 
format_changelog.py: fix spelling of "hyphenatable"

11 years agoformat_changelog.py: tweak hyphenation rules
Nick Mathewson [Sun, 19 Oct 2014 16:57:57 +0000 (12:57 -0400)] 
format_changelog.py: tweak hyphenation rules

Mark all our generated command names, and anything with a
double-hyphen, as unhyphenatable.

11 years agoTeach format_changelog to sort and collate sections.
Nick Mathewson [Sun, 19 Oct 2014 16:44:19 +0000 (12:44 -0400)] 
Teach format_changelog to sort and collate sections.

Give it options to turn off collation and/or wrapping.

11 years agoMemwipe more keys after tor has finished with them
teor [Sun, 19 Oct 2014 16:06:28 +0000 (03:06 +1100)] 
Memwipe more keys after tor has finished with them

Ensure we securely wipe keys from memory after
crypto_digest_get_digest and init_curve25519_keypair_from_file
have finished using them.

Fixes bug 13477.

11 years agoFurther unit test tor_timegm and parse_rfc1123_time
teor [Sun, 19 Oct 2014 15:52:21 +0000 (02:52 +1100)] 
Further unit test tor_timegm and parse_rfc1123_time

Add unit tests for tor_timegm signed overflow,
tor_timegm and parse_rfc1123_time validity checks,
and correct_tm year clamping.
Unit tests (visible) fixes in bug 13476.

11 years agoClamp (some) years supplied by the system to 1 CE
teor [Sun, 19 Oct 2014 15:47:31 +0000 (02:47 +1100)] 
Clamp (some) years supplied by the system to 1 CE

Clamp year values returned by system localtime(_r) and
gmtime(_r) to year 1. This ensures tor can read any
values it might write out.

Fixes bug 13476.

11 years agoformat_changelog.py: learn about the ReleaseNotes format
Nick Mathewson [Sun, 19 Oct 2014 15:47:16 +0000 (11:47 -0400)] 
format_changelog.py: learn about the ReleaseNotes format