Browse Source

Bump version to 3.0.1

Luke Dashjr 12 years ago
parent
commit
c907662416
6 changed files with 64 additions and 6 deletions
  1. 49 2
      NEWS
  2. 1 1
      README.RPC
  3. 1 1
      configure.ac
  4. 11 0
      debian/changelog
  5. 1 1
      debian/control
  6. 1 1
      openwrt/bfgminer/Makefile

+ 49 - 2
NEWS

@@ -1,5 +1,52 @@
-BFGMiner Version 3.0.1 - Future
-
+BFGMiner Version 3.0.1 - April 24, 2013
+
+- Remove bitstreams from Windows binary distributions (README directs users to
+download source and copy them)
+- make-release: Remove autom4te.cache from distributed source
+- Bugfix: Omit --no-opencl-binaries option from build if OpenCL is not being
+compiled
+- Bugfix: Check that all pools have URIs set before starting
+- Bugfix: bitforce: Make noncebuf large enough for max qresults +1 (for OK line)
+- opencl: Ability to avoid using binary kernels with new --no-opencl-binaries
+option
+- README: Include jansson PKG_CONFIG_PATH in example for Mac
+- Include trailing \0 with coinbase sigs if there's room
+- Differentiate socket closed from socket error in recv_line.
+- Add new best share info to verbose logging.
+- Add notice for when network diff is changed.
+- convert sleep(const) to nmsleep()
+- Rename longpoll threads according to what pool they're associated with
+- miner.php report 'Last Valid Work' as time before request
+- API V1.25 - add 'Last Valid Work' time for each device
+- add 'count' to customsummarypage 'calc'
+- Bugfix: ztex: Initialize fw_buf pointer to NULL so a free before allocation is
+safe
+- Cleanup when stratum curl fails to initialise.
+- LTC text typo
+- Recreate cURL for new stratum connections, and clear stratum_notify on
+suspending them
+- clear_stratum_shares: Rename diff_stale variable to diff_cleared
+- MMQ it's a bitstream
+- Update a pool's last work time when the work is popped as well as staged.
+- Extend stratum connections another minute (total 2 minutes) after the last
+work item was staged, and maintain last_work_time for non-stratum pools.
+- Fix --benchmark generating valid work for cgminer.
+- Bugfix: Correct pdbuilder result directory
+- Omit add_serial_all code when serial support is not wanted
+- Use configure to detect presence of roundl to avoid redefining an actual
+function (possibly inline)
+- Bugfix: roundl: Add needed parenthesis to perform ?: before +
+- Bugfix: ft232r: Defer allocating structure until after USB endpoint is
+successfully opened, so it won't leak in case of failure
+- Bugfix: ztex: Free bitstream in memory when done with it
+- Bugfix: Safely handle all-space cURL debug messages, should they ever happen
+- Silence warnings about poor format usage for quit()
+- Apply noreturn and printf-format attributes to quit() function definition
+- Bugfix: set_serial_rts get flags to manipulate them correctly
+- Bugfix: Missing return for /dev globbing
+- Bugfix: Free unused work when retrying failed lp request
+- Display processor name with thread disabled/re-enabled messages
+- Move best share to top summary line, and add network difficulty to block line
 - opencl: Default to phatk kernel for Mesa platform
 - opencl: Default to single thread with Mesa OpenCL
 - opencl: Check for Mesa OpenCL and avoid using binary kernels with it

+ 1 - 1
README.RPC

@@ -416,7 +416,7 @@ api-example.py - a Python script to access the API
 Feature Changelog for external applications using the API:
 
 
-API V1.25
+API V1.25 (BFGMiner v3.0.1)
 
 Modified API commands:
  'devs' 'gpu' and 'pga' - add 'Last Valid Work'

+ 1 - 1
configure.ac

@@ -2,7 +2,7 @@
 ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
 m4_define([v_maj], [3])
 m4_define([v_min], [0])
-m4_define([v_mic], [0])
+m4_define([v_mic], [1])
 ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
 m4_define([v_ver], [v_maj.v_min.v_mic])
 m4_define([lt_rev], m4_eval(v_maj + v_min))

+ 11 - 0
debian/changelog

@@ -1,3 +1,14 @@
+bfgminer (3.0.1-0precise1) precise; urgency=low
+
+  * Bitforce SC: Switched to using bulk queue mode for all ASIC-based devices.
+  * Bitforce SC: Fix reinitialization-on-failure, so devices can autorecover from some problems.
+  * OpenCL: Support for mining with completely free (non-proprietary) Mesa/LLVM OpenCL on Linux (requires git Mesa/LLVM).
+  * OpenCL: Include platform in kernel binary filenames to avoid using stale binaries from other SDK installs.
+  * Added network hashrate (based on block difficulty) to block status line.
+
+ -- Luke Dashjr <luke+bfgminer@dashjr.org>  Wed, 24 Apr 2013 02:40:23 -0000
+
+
 bfgminer (3.0.0-0precise1) precise; urgency=low
 
   * New device driver for ASIC devices, including both Butterfly Labs' BitForce SC and Avalon.

+ 1 - 1
debian/control

@@ -2,7 +2,7 @@ Source: bfgminer
 Priority: optional
 Section: misc
 Maintainer: Luke Dashjr <luke_bfgminer@dashjr.org>
-Standards-Version: 3.0.0
+Standards-Version: 3.0.1
 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

+ 1 - 1
openwrt/bfgminer/Makefile

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