From ef87b3ada9ea80f6b8242e7214fb1629e0cba0eb Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sat, 11 May 2013 23:05:30 +0000 Subject: [PATCH] update email in set_version and update changelog --- ChangeLog | 2 ++ set_version.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a7b7c3d19..86ca405ea 100644 --- a/ChangeLog +++ b/ChangeLog @@ -21,6 +21,8 @@ * fix uTP edge case where udp socket buffer fills up * fix nagle implementation in uTP +0.16.10 release + * fix encryption level handle invalid values * add a number of missing functions to the python binding * fix typo in Jamfile for building shared libraries diff --git a/set_version.py b/set_version.py index b983a30c0..d3cd73ff2 100644 --- a/set_version.py +++ b/set_version.py @@ -18,7 +18,7 @@ def substitute_file(name): elif '#define LIBTORRENT_VERSION ' in l and name.endswith('.hpp'): l = '#define LIBTORRENT_VERSION "%d.%d.%d.%d"\n' % (version[0], version[1], version[2], version[3]) elif 'AC_INIT([libtorrent-rasterbar]' in l and name.endswith('.ac'): - l = 'AC_INIT([libtorrent-rasterbar],[%d.%d.%d],[arvid@cs.umu.se],\n' % (version[0], version[1], version[2]) + l = 'AC_INIT([libtorrent-rasterbar],[%d.%d.%d],[arvid@rasterbar.com],\n' % (version[0], version[1], version[2]) elif 'set (VERSION ' in l and name.endswith('.txt'): l = 'set (VERSION "%d.%d.%d")\n' % (version[0], version[1], version[2]) elif ':Version: ' in l and name.endswith('.rst'):