diff options
author | chriseth <chris@ethereum.org> | 2016-09-15 21:13:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-15 21:13:09 +0800 |
commit | 6a80511ffb63a69589252e26be62d18d6281c8ae (patch) | |
tree | 7d67e9dd120ef5112561a317f1d1c4da1e38338c | |
parent | 8a4f8c236cb0dd3b7256556552c896be137cd02c (diff) | |
parent | 3cd760446e00e94120f49d63fb1976db8b42310b (diff) | |
download | dexon-solidity-6a80511ffb63a69589252e26be62d18d6281c8ae.tar.gz dexon-solidity-6a80511ffb63a69589252e26be62d18d6281c8ae.tar.zst dexon-solidity-6a80511ffb63a69589252e26be62d18d6281c8ae.zip |
Merge pull request #1072 from ethereum/versioning
Document versioning behaviour
-rw-r--r-- | docs/installing-solidity.rst | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/docs/installing-solidity.rst b/docs/installing-solidity.rst index ad27e528..ebb7537b 100644 --- a/docs/installing-solidity.rst +++ b/docs/installing-solidity.rst @@ -6,6 +6,15 @@ Installing Solidity ################### +Versioning +========== + +Solidity versions follow `semantic versioning <https://semver.org>` and in addition to +releases, **nightly development builds** are also made available. The nightly builds +are not guaranteed to be working and despite best efforts they might contain undocumented +and/or broken changes. We recommend to use the latest release. Package installers below +will use the latest release. + Browser-Solidity ================ @@ -186,3 +195,20 @@ Alternatively, you can build for Windows on the command-line, like so: .. code:: bash cmake --build . --config RelWithDebInfo + +Important information about versioning +====================================== + +After a release is made, the patch version level is bumped, because we assume that only +patch level changes follow. When changes are merged, the version should be bumped according +to semver and the severity of the change. Finally, a release is always made with the version +of the current nightly build, but without the ``prerelease`` specifier. + +Example: +- 0) the 0.4.0 release is made +- 1) nightly build has a version of 0.4.1 from now on +- 2) non-breaking changes are introduced - no change in version +- 3) a breaking change is introduced - version is bumped to 0.5.0 +- 4) the 0.5.0 release is made + +This behaviour works well with the version pragma. |