Browse Source

Bump version to 3.0.9

Luke Dashjr 12 years ago
parent
commit
246665ea5c
6 changed files with 31 additions and 4 deletions
  1. 20 0
      NEWS
  2. 1 1
      README.OpenWrt
  3. 1 1
      configure.ac
  4. 7 0
      debian/changelog
  5. 1 1
      debian/control
  6. 1 1
      openwrt/bfgminer/Makefile

+ 20 - 0
NEWS

@@ -1,3 +1,23 @@
+BFGMiner Version 3.0.9 - October 11, 2013
+
+- Bugfix: icarus: Check for valid fd before all usage
+- Bugfix: Stratum initiate: Clear json var after freeing it, to avoid a
+potential double-free if retry fails before new JSON is parsed
+- Silence warnings about (never really) uninitalised variables
+- README: Mention free GPU mining dependencies
+- json_rpc_call_completed: Silence incorrect type cast warning
+- icarus: Silence warning about (never really) uninitalised variable use in
+icarus_scanhash
+- ft232r: Silence warning about (never really) uninitalised variable use
+- Silence unused result warnings for notifier_{read,wake}
+- Don't even show 'Attempting to restart' for devices that don't support it
+- Workaround bug in PDCurses wresize
+- Bugfix: Target FD_SETSIZE for fd soft limit (to avoid buffer overflows),
+rather than raising it as high as possible
+- Bugfix: Stratum: Avoid FD_SETting INVSOCK
+- Bugfix: dynclock: Never try to clock below 1x
+
+
 BFGMiner Version 3.0.8 - September 19, 2013
 BFGMiner Version 3.0.8 - September 19, 2013
 
 
 - Only show long-poll message in pool summary if it's not using stratum.
 - Only show long-poll message in pool summary if it's not using stratum.

+ 1 - 1
README.OpenWrt

@@ -4,7 +4,7 @@ a line that looks similar to this at the top:
 Note the platform following the OpenWrt version. In this example, it is ar71xx.
 Note the platform following the OpenWrt version. In this example, it is ar71xx.
 
 
 Now add a new line immediately below it, similar to this:
 Now add a new line immediately below it, similar to this:
-	src/gz bfgminer http://luke.dashjr.org/programs/bitcoin/files/bfgminer/3.0.x/openwrt/12.09/ar71xx
+	src/gz bfgminer http://luke.dashjr.org/programs/bitcoin/files/bfgminer/stable/openwrt/12.09/ar71xx
 Be sure you put the same platform at the end as your OpenWrt repository!
 Be sure you put the same platform at the end as your OpenWrt repository!
 
 
 Next, save the file and exit your editor. Tell opkg to reload its package lists
 Next, save the file and exit your editor. Tell opkg to reload its package lists

+ 1 - 1
configure.ac

@@ -14,7 +14,7 @@ dnl * any later version.  See COPYING for more details.
 ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
 ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
 m4_define([v_maj], [3])
 m4_define([v_maj], [3])
 m4_define([v_min], [0])
 m4_define([v_min], [0])
-m4_define([v_mic], [8])
+m4_define([v_mic], [9])
 ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
 ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
 m4_define([v_ver], [v_maj.v_min.v_mic])
 m4_define([v_ver], [v_maj.v_min.v_mic])
 m4_define([lt_rev], m4_eval(v_maj + v_min))
 m4_define([lt_rev], m4_eval(v_maj + v_min))

+ 7 - 0
debian/changelog

@@ -1,3 +1,10 @@
+bfgminer (3.0.9-0precise1) precise; urgency=low
+
+  * Bug fixes only.
+
+ -- Luke Dashjr <luke+bfgminer@dashjr.org>  Fri, 11 Oct 2013 21:46:32 -0000
+
+
 bfgminer (3.0.8-0precise1) precise; urgency=low
 bfgminer (3.0.8-0precise1) precise; urgency=low
 
 
   * Bug fixes only.
   * Bug fixes only.

+ 1 - 1
debian/control

@@ -2,7 +2,7 @@ Source: bfgminer
 Priority: optional
 Priority: optional
 Section: misc
 Section: misc
 Maintainer: Luke Dashjr <luke_bfgminer@dashjr.org>
 Maintainer: Luke Dashjr <luke_bfgminer@dashjr.org>
-Standards-Version: 3.0.8
+Standards-Version: 3.0.9
 Build-Depends: build-essential, debhelper, autoconf, automake, libtool, libssl-dev, yasm, pkg-config, libudev-dev, libcurl4-openssl-dev, wget, unzip, libjansson-dev, libncurses5-dev, libudev-dev, libusb-1.0-0-dev, git, quilt
 Build-Depends: build-essential, debhelper, autoconf, automake, libtool, libssl-dev, yasm, pkg-config, libudev-dev, libcurl4-openssl-dev, wget, unzip, libjansson-dev, libncurses5-dev, libudev-dev, libusb-1.0-0-dev, git, quilt
 
 
 Package: bfgminer
 Package: bfgminer

+ 1 - 1
openwrt/bfgminer/Makefile

@@ -11,7 +11,7 @@ include $(TOPDIR)/rules.mk
 
 
 PKG_NAME:=bfgminer
 PKG_NAME:=bfgminer
 PKG_TITLE:=BFGMiner
 PKG_TITLE:=BFGMiner
-PKG_VERSION:=3.0.8
+PKG_VERSION:=3.0.9
 PKG_RELEASE:=1
 PKG_RELEASE:=1
 
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tbz2
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tbz2