The version is defined with 3 levels: major.minor.rev (e.g. 0.20.2).
There is an additional 4th leve defined as the build version wich is
always set to zero in our releases.
This diff removes the extra level in the version number.
Details
Details
- Reviewers
deadalnix - Group Reviewers
Restricted Project - Commits
- rSTAGING8f09215cbe73: Use only 3 levels for defining the version
rABC8f09215cbe73: Use only 3 levels for defining the version
Build on all platforms, then:
bitcoind -version bitcoinqt -version bitcoin-cli -version bitcoin-tx -help
Run the gitian builds on all platforms.
Generate the man pages and check the version number has 3 levels.
Diff Detail
Diff Detail
- Repository
- rABC Bitcoin ABC
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
share/setup.nsi.in | ||
---|---|---|
61 ↗ | (On Diff #13119) | Note to reviewers: |
share/setup.nsi.in | ||
---|---|---|
61 ↗ | (On Diff #13119) | From stackoverflow, this variable is used to set the VS_FIXEDFILEINFO structure: |
src/clientversion.h | ||
---|---|---|
17 ↗ | (On Diff #13119) | This would probably benefit from a relayout. |
src/clientversion.h | ||
---|---|---|
17 ↗ | (On Diff #13119) | Moving !defined(CLIENT_VERSION_IS_RELEASE) would have make the line 81 character long, so I moved !defined(COPYRIGHT_YEAR) instead. |