parity: bump stable version to 1.10.5 (#8749)

* parity: bump stable version to 1.10.5

* Fix failing doc tests running on non-code
This commit is contained in:
Afri Schoedon
2018-06-04 13:57:24 +02:00
committed by GitHub
parent 39b9f1e252
commit 02ffb9be42
7 changed files with 15 additions and 15 deletions

View File

@@ -56,7 +56,7 @@ enum RemoveFrom {
/// the removals actually take effect.
///
/// journal format:
/// ```
/// ```text
/// [era, 0] => [ id, [insert_0, ...], [remove_0, ...] ]
/// [era, 1] => [ id, [insert_0, ...], [remove_0, ...] ]
/// [era, n] => [ ... ]
@@ -75,7 +75,7 @@ enum RemoveFrom {
/// which includes an original key, if any.
///
/// The semantics of the `counter` are:
/// ```
/// ```text
/// insert key k:
/// counter already contains k: count += 1
/// counter doesn't contain k:
@@ -91,7 +91,7 @@ enum RemoveFrom {
///
/// Practically, this means that for each commit block turning from recent to ancient we do the
/// following:
/// ```
/// ```text
/// is_canonical:
/// inserts: Ignored (left alone in the backing database).
/// deletes: Enacted; however, recent history queue is checked for ongoing references. This is

View File

@@ -39,7 +39,7 @@ use bytes::Bytes;
/// the removals actually take effect.
///
/// journal format:
/// ```
/// ```text
/// [era, 0] => [ id, [insert_0, ...], [remove_0, ...] ]
/// [era, 1] => [ id, [insert_0, ...], [remove_0, ...] ]
/// [era, n] => [ ... ]

View File

@@ -3,7 +3,7 @@
[package]
name = "parity-version"
# NOTE: this value is used for Parity version string (via env CARGO_PKG_VERSION)
version = "1.10.4"
version = "1.10.5"
authors = ["Parity Technologies <admin@parity.io>"]
build = "build.rs"