aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2016-09-13 19:13:21 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2016-09-14 07:41:34 +0800
commit3cd760446e00e94120f49d63fb1976db8b42310b (patch)
tree087ad8fd2c9737ac07aa7e57f5237db7b2215b29 /docs
parentfb856c3f8d402ad73f9a7c2ed52a418396e60cee (diff)
downloaddexon-solidity-3cd760446e00e94120f49d63fb1976db8b42310b.tar.gz
dexon-solidity-3cd760446e00e94120f49d63fb1976db8b42310b.tar.zst
dexon-solidity-3cd760446e00e94120f49d63fb1976db8b42310b.zip
Split versioning into two sections
Diffstat (limited to 'docs')
-rw-r--r--docs/installing-solidity.rst34
1 files changed, 19 insertions, 15 deletions
diff --git a/docs/installing-solidity.rst b/docs/installing-solidity.rst
index 42d7bf98..ebb7537b 100644
--- a/docs/installing-solidity.rst
+++ b/docs/installing-solidity.rst
@@ -12,21 +12,8 @@ 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.
-
-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.
+and/or broken changes. We recommend to use the latest release. Package installers below
+will use the latest release.
Browser-Solidity
================
@@ -208,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.