]> Git Repo - VerusCoin.git/blame - doc/release-notes/release-notes-0.7.1.md
Use -debug=zrpc for z_* rpc calls (#1504)
[VerusCoin.git] / doc / release-notes / release-notes-0.7.1.md
CommitLineData
69baec96
WL
1Bitcoin version 0.7.1 is now available from:
2 http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.7.1/
3
4This is a bug-fix minor release.
5
6Please report bugs using the issue tracker at github:
7 https://github.com/bitcoin/bitcoin/issues
8
9Project source code is hosted at github; you can get
10source-only tarballs/zipballs directly from there:
11 https://github.com/bitcoin/bitcoin/tarball/v0.7.1 # .tar.gz
12 https://github.com/bitcoin/bitcoin/zipball/v0.7.1 # .zip
13
14Ubuntu Linux users can use the "Personal Package Archive" (PPA)
15maintained by Matt Corallo to automatically keep
16up-to-date. Just type:
17 sudo apt-add-repository ppa:bitcoin/bitcoin
18 sudo apt-get update
19in your terminal, then install the bitcoin-qt package:
20 sudo apt-get install bitcoin-qt
21
22KNOWN ISSUES
23------------
24
25Mac OSX 10.5 is no longer supported.
26
27How to Upgrade
28--------------
29
30If you are running an older version, shut it down. Wait
31until it has completely shut down (which might take a few minutes for older
32versions), then run the installer (on Windows) or just copy over
33/Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux).
34
35If you were running on Linux with a version that might have been compiled
36with a different version of Berkeley DB (for example, if you were using an
37Ubuntu PPA version), then run the old version again with the -detachdb
38argument and shut it down; if you do not, then the new version will not
39be able to read the database files and will exit with an error.
40
41Explanation of -detachdb (and the new "stop true" RPC command):
42The Berkeley DB database library stores data in both ".dat" and
43"log" files, so the database is always in a consistent state,
44even in case of power failure or other sudden shutdown. The
45format of the ".dat" files is portable between different
46versions of Berkeley DB, but the "log" files are not-- even minor
47version differences may have incompatible "log" files. The
48-detachdb option moves any pending changes from the "log" files
49to the "blkindex.dat" file for maximum compatibility, but makes
50shutdown much slower. Note that the "wallet.dat" file is always
51detached, and versions prior to 0.6.0 detached all databases
52at shutdown.
53
54New features
55------------
56
57* Added a boolean argument to the RPC 'stop' command, if true sets
58 -detachdb to create standalone database .dat files before shutting down.
59
60* -salvagewallet command-line option, which moves any existing wallet.dat
61 to wallet.{timestamp}.dat and then attempts to salvage public/private
62 keys and master encryption keys (if the wallet is encrypted) into
63 a new wallet.dat. This should only be used if your wallet becomes
64 corrupted, and is not intended to replace regular wallet backups.
65
66* Import $DataDir/bootstrap.dat automatically, if it exists.
67
68Dependency changes
69------------------
70
71* Qt 4.8.2 for Windows builds
72
73* openssl 1.0.1c
74
75Bug fixes
76---------
77
78* Clicking on a bitcoin: URI on Windows should now launch Bitcoin-Qt properly.
79
80* When running -testnet, use RPC port 18332 by default.
81
82* Better detection and handling of corrupt wallet.dat and blkindex.dat files.
83 Previous versions would crash with a DB_RUNRECOVERY exception, this
84 version detects most problems and tells you how to recover if it
85 cannot recover itself.
86
87* Fixed an uninitialized variable bug that could cause transactions to
88 be reported out of order.
89
90* Fixed a bug that could cause occasional crashes on exit.
91
92* Warn the user that they need to create fresh wallet backups after they
93 encrypt their wallet.
94
95----------------------------------------------------
96Thanks to everybody who contributed to this release:
97
98Gavin Andresen
99Jeff Garzik
100Luke Dashjr
101Mark Friedenbach
102Matt Corallo
103Philip Kaufmann
104Pieter Wuille
105Rune K. Svendsen
106Virgil Dupras
107Wladimir J. van der Laan
108fanquake
109kjj2
110xanatos
This page took 0.097526 seconds and 4 git commands to generate.