Skip to content

Commit

Permalink
Miner release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jcvernaleo committed Apr 27, 2016
1 parent 2d76540 commit 15841bc
Show file tree
Hide file tree
Showing 5 changed files with 91 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This repository contains releases for the following software:

* [dcrd/dcrwallet](./release-notes.md)
* [Paymetheus](./paymetheus-release-notes.md)
* [cgminer](./cgminer-release-notes.md)
* [miners](./miners-release-notes.md)

## Verifying Binaries

Expand Down
4 changes: 4 additions & 0 deletions manifests/manifest-miners-20160427.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
2430bf80ea1664d387ee89267fbd6b723b4f4862b35f5866438858ef9aca77e8 ccminer-decred-linux-x86_64-v0.1.0-20160427.tar.gz
1101e202b6594190d28e28ccb050637a9bec25e6ca3caabdcb59b5cb3a30827f ccminer-decred-win64-v0.1.0-20160427.zip
f28aca448d4947d9e9c17a40659defd654c821f4630789f3409775030894cf35 cgminer-decred-linux-x86_64-v0.1.0-20160427.tar.gz
03589fbe7acd0766a0937fc7706a2725605fd74cd2da6697b2ffe51a46a6ac31 cgminer-decred-win64-v0.1.0-20160427.zip
41 changes: 41 additions & 0 deletions cgminer-release-notes.md → miners-release-notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,44 @@
# [v0.1.0_miners](https://github.com/decred/decred-release/releases/tag/v0.1.0_miners)

## 2016-04-27

This is a binary release of cgminer and ccminer for decred. Binaries
for 64bit Linux and Windows are provided.

The attached manifest file can be used to confirm the sha of the
download.

See [README.md](./README.md) for more info on verifying the files.

Changes include:

| Description | Pull Request |
| --- | ---- |
| blake kernel optimisation for nvidia cards | [decred/cgminer#24](https://github.com/decred/cgminer/pull/24) |
| Fix broken intensity. | [decred/cgminer#25](https://github.com/decred/cgminer/pull/25) |
| Fixed high CPU usage and time-too-new bug. | [decred/cgminer#27](https://github.com/decred/cgminer/pull/27) |
| .gitignore the rest of the generated files. | [decred/cgminer#28](https://github.com/decred/cgminer/pull/28) |
| Use decred specific version number. | [decred/cgminer#30](https://github.com/decred/cgminer/pull/30) |
| Add script to make mostly static linux builds. | [decred/cgminer#31](https://github.com/decred/cgminer/pull/31) |
| Have git ignore more temporary files. | [decred/cgminer#32](https://github.com/decred/cgminer/pull/32) |
| Add message at the end of build script. | [decred/cgminer#33](https://github.com/decred/cgminer/pull/33) |
| Add cross-compiling for windows build script. | [decred/cgminer#34](https://github.com/decred/cgminer/pull/34) |
| Bump for v0.1.0 | [decred/cgminer#35](https://github.com/decred/cgminer/pull/35) |
| ~10% speedup | [decred/ccminer#1](https://github.com/decred/ccminer/pull/1) |
| Use decred specific version number. | [decred/ccminer#2](https://github.com/decred/ccminer/pull/2) |
| Add script to make mostly static linux builds. | [decred/ccminer#3](https://github.com/decred/ccminer/pull/3) |
| Add message at the end of build script. | [decred/ccminer#4](https://github.com/decred/ccminer/pull/4) |
| Bump for v0.1.0 | [decred/ccminer#5](https://github.com/decred/ccminer/pull/5) |

## Commits

This release was built from:

| Repository | Commit Hash |
| --- | ---- |
| cgminer | 2616e256b99924de072bfde177abe3c470cd1b32 |
| ccminer | 45aaecfcdf5ae23ab1e9090cb3140d758a287bd4 |

# [v0.0.5_cgminer](https://github.com/decred/decred-release/releases/tag/v0.0.5_cgminer)

## 2016-02-10
Expand Down
44 changes: 44 additions & 0 deletions minersbuild.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
#!/bin/bash

# Simple bash script to build and package Decred miner for all the platforms
# we support.
#
# Currently, ccminer cannot be crosscompiled so it must be manually
# built and zipped up on windows. Also ccminer doesn't build on linux
# on my build machine (jcv) due to some older libs so it must also be done
# manually. Hopefully both of these can be fixed in the near future.
#
# Copyright (c) 2016 The Decred developers
# Use of this source code is governed by the ISC
# license.

if [[ $1x = x ]]; then
TAG=""
else
TAG=-$1
fi

DATE=`date +%Y%m%d`
MAINDIR=miners$TAG-$DATE-$VERSION
mkdir -p $MAINDIR

cd ../cgminer/
git clean
./build_linux.sh
mkdir cgminer-decred-linux-x86_64$TAG-$DATE
cp cgminer cgminer-decred-linux-x86_64$TAG-$DATE/
cp blake256.cl cgminer-decred-linux-x86_64$TAG-$DATE/
tar -cvzf cgminer-decred-linux-x86_64$TAG-$DATE.tar.gz cgminer-decred-linux-x86_64$TAG-$DATE/
cp cgminer-decred-linux-x86_64$TAG-$DATE.tar.gz ../decred-release/$MAINDIR
./build_windows.sh
mkdir cgminer-decred-win64$TAG-$DATE
cp cgminer..exe cgminer-decred-win64$TAG-$DATE/
cp blake256.cl cgminer-decred-win64$TAG-$DATE/
zip -r cgminer-decred-win64$TAG-$DATE.zip cgminer-decred-win64$TAG-$DATE/
cp cgminer-decred-win64$TAG-$DATE.zip ../decred-release/$MAINDIR
cd ..
cp ccminer-decred-linux-x86_64$TAG-$DATE.tar.gz decred-release/$MAINDIR
cp ccminer-decred-win64$TAG-$DATE.zip decred-release/$MAINDIR
sha256sum * > manifest-miners-$DATE.txt
cd ..
tar -cvzf $MAINDIR.tar.gz $MAINDIR
2 changes: 1 addition & 1 deletion release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Changes include:
| Use AllowHighFees in SendRawTransaction cmd to actually check tx fees | [decred/dcrd#124](https://github.com/decred/dcrd/pull/124) |
| Add ticketfeeinfo command | [decred/dcrd#132](https://github.com/decred/dcrd/pull/132) |
| Bump for v0.1.1 | [decred/dcrd#136](https://github.com/decred/dcrd/pull/136) |
| Regenerate walletrpc package. | [decred/dcrwallet#185=9](https://github.com/decred/dcrwallet/pull/189) |
| Regenerate walletrpc package. | [decred/dcrwallet#189](https://github.com/decred/dcrwallet/pull/189) |
| Isolate address pool to prevent excessive address creation | [decred/dcrwallet#191](https://github.com/decred/dcrwallet/pull/191) |
| Reinsert scan length variable | [decred/dcrwallet#196](https://github.com/decred/dcrwallet/pull/196) |
| Do not include zero value change outputs. | [decred/dcrwallet#193](https://github.com/decred/dcrwallet/pull/193) |
Expand Down

0 comments on commit 15841bc

Please sign in to comment.