Skip to content

Commit 8da1aa4

Browse files
author
MarcoFalke
committed
Merge #15908: docs: Align MSVC build options with Linux build ones
e47dc4f Include bitcoin_config.h in release process (Hennadii Stepanov) 48ed65b Align MSVC build options with Linux build ones (Hennadii Stepanov) Pull request description: Ref: - #11526 - bitcoin/bitcoin#15903 (comment) - bitcoin/bitcoin#15903 (comment) by MarcoFalke ACKs for commit e47dc4: MarcoFalke: utACK e47dc4f Sjors: utACK e47dc4f fanquake: utACK e47dc4f practicalswift: utACK e47dc4f Tree-SHA512: 32ac3e9fd0b41a4916dd520bdf8bb6c71cea7218434b67a173b51b3cdb0da3f10a68b9e5205c27a52f456ac9ed14f8f8363a50d108a80a5dd55b085a6bd435b9
2 parents 67caf2d + e47dc4f commit 8da1aa4

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

build_msvc/bitcoin_config.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
#define CLIENT_VERSION_IS_RELEASE false
1212

1313
/* Major version */
14-
#define CLIENT_VERSION_MAJOR 1
14+
#define CLIENT_VERSION_MAJOR 0
1515

1616
/* Minor version */
17-
#define CLIENT_VERSION_MINOR 17
17+
#define CLIENT_VERSION_MINOR 18
1818

1919
/* Build revision */
2020
#define CLIENT_VERSION_REVISION 99
@@ -29,7 +29,7 @@
2929
#define COPYRIGHT_HOLDERS_SUBSTITUTION "Bitcoin Core"
3030

3131
/* Copyright year */
32-
#define COPYRIGHT_YEAR 2018
32+
#define COPYRIGHT_YEAR 2019
3333

3434
/* Define to 1 to enable wallet functions */
3535
#define ENABLE_WALLET 1

doc/release-process.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,14 @@ Release Process
44
Before every release candidate:
55

66
* Update translations (ping wumpus on IRC) see [translation_process.md](https://github.com/bitcoin/bitcoin/blob/master/doc/translation_process.md#synchronising-translations).
7-
87
* Update manpages, see [gen-manpages.sh](https://github.com/bitcoin/bitcoin/blob/master/contrib/devtools/README.md#gen-manpagessh).
9-
* Update release candidate version in `configure.ac` (`CLIENT_VERSION_RC`)
8+
* Update release candidate version in `configure.ac` (`CLIENT_VERSION_RC`).
109

1110
Before every minor and major release:
1211

1312
* Update [bips.md](bips.md) to account for changes since the last release.
14-
* Update version in `configure.ac` (don't forget to set `CLIENT_VERSION_IS_RELEASE` to `true`) (don't forget to set `CLIENT_VERSION_RC` to `0`)
15-
* Write release notes (see below)
13+
* Update version in `configure.ac` (don't forget to set `CLIENT_VERSION_RC` to `0`).
14+
* Write release notes (see below).
1615
* Update `src/chainparams.cpp` nMinimumChainWork with information from the getblockchaininfo rpc.
1716
* Update `src/chainparams.cpp` defaultAssumeValid with information from the getblockhash rpc.
1817
- The selected value must not be orphaned so it may be useful to set the value two blocks back from the tip.
@@ -26,7 +25,13 @@ Before every major release:
2625
* Update [`src/chainparams.cpp`](/src/chainparams.cpp) m_assumed_blockchain_size and m_assumed_chain_state_size with the current size plus some overhead.
2726
* Update `src/chainparams.cpp` chainTxData with statistics about the transaction count and rate. Use the output of the RPC `getchaintxstats`, see
2827
[this pull request](https://github.com/bitcoin/bitcoin/pull/12270) for an example. Reviewers can verify the results by running `getchaintxstats <window_block_count> <window_last_block_hash>` with the `window_block_count` and `window_last_block_hash` from your output.
29-
* Update version of `contrib/gitian-descriptors/*.yml`: usually one'd want to do this on master after branching off the release - but be sure to at least do it before a new major release
28+
* Update version of `contrib/gitian-descriptors/*.yml`: usually one'd want to do this on master after branching off the release - but be sure to at least do it before a new major release.
29+
* In `configure.ac` and `build_msvc/bitcoin_config.h` on _the master branch_:
30+
- update `CLIENT_VERSION_MINOR` version
31+
* In `configure.ac` and `build_msvc/bitcoin_config.h` on _a new release branch_ (see [this commit](https://github.com/bitcoin/bitcoin/commit/742f7dd972fca3dd4a33cfff90bf901b71a687e7)):
32+
- update `CLIENT_VERSION_MINOR` version
33+
- set `CLIENT_VERSION_REVISION` to `0`
34+
- set `CLIENT_VERSION_IS_RELEASE` to `true`
3035

3136
### First time / New builders
3237

0 commit comments

Comments
 (0)