Browse Source

Bump version to 4.2.0.

djm34
Noel Maersk 10 years ago
parent
commit
87ece62013
  1. 18
      NEWS.md
  2. 4
      configure.ac
  3. 6
      winbuild/dist/include/config.h

18
NEWS.md

@ -1,11 +1,19 @@ @@ -1,11 +1,19 @@
# Release news
## Version 4.2.0 - TBA
* API response to `version` has field `CGMiner` instead of `SGMiner`,
and an additional `Miner` field (by _luke-jr_).
## Version 4.2.0 - 20th May 2014
* git repo moved to [sgminer-dev](https://github.com/sgminer-dev/sgminer).
It is now a GitHub organisation with several people having write access.
* Kernel `bufius` merger from `vertminer` (by _Bufius_).
* Set pool as idle on several stratum failure conditions (by _elbandi_).
* API response to `version` has field `CGMiner` instead of `SGMiner`
for API client compatibility, and an additional `Miner` field (by
_luke-jr_).
* API response to `restart` and `quit` only contains a `status` section
and passes JSON validation (by _luke-jr_).
* API response to `devs` contains `XIntensity` and `RawIntensity` fields.
* Config file writing from TUI/API should produce a borked config less
often.
## Version 4.1.271 - 12th April 2014
@ -13,7 +21,7 @@ @@ -13,7 +21,7 @@
* Allow setting algorithm per-pool and initial implementation of kernel
hot-swapping (by _mrbrdo_). Use options `pool-algorithm` (in config
file or in CLI) or `algorithm` (config-only).
* NCurses UI [S][W] writes pool name and description to configuration.
* NCurses UI `[S][W]` writes pool name and description to configuration.
* Added algorithm name to `pools` API command (by _troky_).
* NCurses UI asks for (optional) pool name, description and algorithm
when adding pool.

4
configure.ac

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

6
winbuild/dist/include/config.h vendored

@ -68,11 +68,11 @@ @@ -68,11 +68,11 @@
#endif
#define VERSION "v4.1.271"
#define VERSION "v4.2.0"
#define PACKAGE_NAME "sgminer"
#define PACKAGE_TARNAME "sgminer"
#define PACKAGE_VERSION "4.1.271"
#define PACKAGE_STRING "sgminer 4.1.271"
#define PACKAGE_VERSION "4.2.0"
#define PACKAGE_STRING "sgminer 4.2.0"
#define PACKAGE "sgminer"
#define SGMINER_PREFIX ""

Loading…
Cancel
Save