From 891c279e3b643429624d227c1c3a835d485bcb92 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Fri, 13 Sep 2013 21:26:07 +1000 Subject: [PATCH] Bump version number to 3.4.3, updating news. --- NEWS | 14 +++++++++++++- configure.ac | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 5bfce6dc..5c7d6976 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,16 @@ - +Version 3.4.3 - 13th September 2013 + +- Put corefoundation and iokit separate in ldflags for darwin. +- Add rules for libusb Makefile.am building on osx +- Add flags for building libusb statically on osx. +- Find the greatest common denominator in quotas and use the smallest number of +consecutive work items per pool in quota load balance mode to smooth hashrate +across pools with large quotas. Give excess quota to priority pool 0 instead of +pool 0. +- Avoid dynamically adding stack memory for nonce2 in the stratum send thread +and check the pool's nonce2_len will not cause an overflow. +- Add subdir-objects to automake options. +- Use inet_addr instead of inet_network to fix windows build. - Remove unused pbase variable. - Add support for socks4/4a proxies with stratum, and drop back to socks4 support via the global --socks-proxy command to not break previous diff --git a/configure.ac b/configure.ac index 148eb5ee..a2f8b1b6 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## m4_define([v_maj], [3]) m4_define([v_min], [4]) -m4_define([v_mic], [2]) +m4_define([v_mic], [3]) ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## m4_define([v_ver], [v_maj.v_min.v_mic]) m4_define([lt_rev], m4_eval(v_maj + v_min))