Skip to content

Commit c9aad8a

Browse files
committed
Merge pull request #6729
f370093 build: prepare v0.16.0.3 release (selsta)
2 parents 7f8fe81 + f370093 commit c9aad8a

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Dates are provided in the format YYYY-MM-DD.
132132
| 1686275 | 2018-10-19 | v9 | v0.13.0.0 | v0.13.0.4 | bulletproofs required
133133
| 1788000 | 2019-03-09 | v10 | v0.14.0.0 | v0.14.1.2 | New PoW based on Cryptonight-R, new block weight algorithm, slightly more efficient RingCT format
134134
| 1788720 | 2019-03-10 | v11 | v0.14.0.0 | v0.14.1.2 | forbid old RingCT transaction format
135-
| 1978433 | 2019-11-30* | v12 | v0.15.0.0 | v0.16.0.1 | New PoW based on RandomX, only allow >= 2 outputs, change to the block median used to calculate penalty, v1 coinbases are forbidden, rct sigs in coinbase forbidden, 10 block lock time for incoming outputs
135+
| 1978433 | 2019-11-30* | v12 | v0.15.0.0 | v0.16.0.3 | New PoW based on RandomX, only allow >= 2 outputs, change to the block median used to calculate penalty, v1 coinbases are forbidden, rct sigs in coinbase forbidden, 10 block lock time for incoming outputs
136136
| XXXXXXX | XXX-XX-XX | XXX | vX.XX.X.X | vX.XX.X.X | XXX |
137137

138138
X's indicate that these details have not been determined as of commit date.
@@ -292,7 +292,7 @@ Tested on a Raspberry Pi Zero with a clean install of minimal Raspbian Stretch (
292292
```bash
293293
git clone https://github.com/monero-project/monero.git
294294
cd monero
295-
git checkout tags/v0.16.0.1
295+
git checkout tags/v0.16.0.3
296296
```
297297
298298
* Build:
@@ -409,10 +409,10 @@ application.
409409
cd monero
410410
```
411411

412-
* If you would like a specific [version/tag](https://github.com/monero-project/monero/tags), do a git checkout for that version. eg. 'v0.16.0.1'. If you don't care about the version and just want binaries from master, skip this step:
412+
* If you would like a specific [version/tag](https://github.com/monero-project/monero/tags), do a git checkout for that version. eg. 'v0.16.0.3'. If you don't care about the version and just want binaries from master, skip this step:
413413
414414
```bash
415-
git checkout v0.16.0.1
415+
git checkout v0.16.0.3
416416
```
417417
418418
* If you are on a 64-bit system, run:

contrib/gitian/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Setup for LXC:
126126

127127
```bash
128128
GH_USER=fluffypony
129-
VERSION=v0.16.0.1
129+
VERSION=v0.16.0.3
130130

131131
./gitian-build.py --setup $GH_USER $VERSION
132132
```
@@ -182,7 +182,7 @@ If you chose to do detached signing using `--detach-sign` above (recommended), y
182182

183183
```bash
184184
GH_USER=fluffypony
185-
VERSION=v0.16.0.1
185+
VERSION=v0.16.0.3
186186

187187
gpg --detach-sign ${VERSION}-linux/${GH_USER}/monero-linux-*-build.assert
188188
gpg --detach-sign ${VERSION}-win/${GH_USER}/monero-win-*-build.assert

src/blocks/checkpoints.dat

3.44 KB
Binary file not shown.

src/checkpoints/checkpoints.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@ namespace cryptonote
214214
ADD_CHECKPOINT(2046000, "5e867f0b8baefed9244a681df97fc885d8ab36c3dfcd24c7a3abf3b8ac8b8314");
215215
ADD_CHECKPOINT(2092500, "c4e00820c9c7989b49153d5e90ae095a18a11d990e82fcc3be54e6ed785472b5");
216216
ADD_CHECKPOINT(2125000, "a8e49c62792a2aa56ba62603fe015303647e2c19203c56999c7f6f2498cd3e6d");
217+
ADD_CHECKPOINT(2153000, "05952ed32f92647c44f91b222cc95cc8fb6f04cefd59b76ef30884fec957797e");
217218
return true;
218219
}
219220

src/cryptonote_core/blockchain.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5122,7 +5122,7 @@ void Blockchain::cancel()
51225122
}
51235123

51245124
#if defined(PER_BLOCK_CHECKPOINT)
5125-
static const char expected_block_hashes_hash[] = "da1cafd8f186d06c2985ca84cab7980d276538ac86086a38f25514a52e5b09b4";
5125+
static const char expected_block_hashes_hash[] = "37e15136d7527e47940ef85bff9d258b940c583bcc2e820aa9a98833a7344ece";
51265126
void Blockchain::load_compiled_in_block_hashes(const GetCheckpointsCallback& get_checkpoints)
51275127
{
51285128
if (get_checkpoints == nullptr || !m_fast_sync)

src/version.cpp.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define DEF_MONERO_VERSION_TAG "@VERSIONTAG@"
2-
#define DEF_MONERO_VERSION "0.16.0.1"
2+
#define DEF_MONERO_VERSION "0.16.0.3"
33
#define DEF_MONERO_RELEASE_NAME "Nitrogen Nebula"
44
#define DEF_MONERO_VERSION_FULL DEF_MONERO_VERSION "-" DEF_MONERO_VERSION_TAG
55
#define DEF_MONERO_VERSION_IS_RELEASE @VERSION_IS_RELEASE@

0 commit comments

Comments
 (0)