From fdc71074d499bbbadc9f87a37f310ecfe0c20b86 Mon Sep 17 00:00:00 2001 From: AurelienFT Date: Wed, 21 Sep 2022 09:47:58 +0200 Subject: [PATCH 1/3] Update new version. --- docs/technical-doc/openrpc.json | 2 +- docs/testnet/install.rst | 6 +++--- massa-models/src/config/constants.rs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/technical-doc/openrpc.json b/docs/technical-doc/openrpc.json index 78fd271b304..fbd67022612 100644 --- a/docs/technical-doc/openrpc.json +++ b/docs/technical-doc/openrpc.json @@ -2,7 +2,7 @@ "openrpc": "1.2.4", "info": { "title": "Massa OpenRPC", - "version": "TEST.14.6", + "version": "TEST.14.7", "description": "Massa OpenRPC spec", "termsOfService": "https://open-rpc.org", "contact": { diff --git a/docs/testnet/install.rst b/docs/testnet/install.rst index aed5df4e212..2206c4f9116 100644 --- a/docs/testnet/install.rst +++ b/docs/testnet/install.rst @@ -14,9 +14,9 @@ From binaries If you just wish to run a Massa node without compiling it yourself, you can simply download the latest binary below and go the the next step: :ref:`Running a node `. -- `Windows executable `_ -- `Linux binary `_ - only works with libc2.28 at least (for example Ubuntu 20.04 and higher) -- `MacOS binary `_ +- `Windows executable `_ +- `Linux binary `_ - only works with libc2.28 at least (for example Ubuntu 20.04 and higher) +- `MacOS binary `_ From source code ================ diff --git a/massa-models/src/config/constants.rs b/massa-models/src/config/constants.rs index 599efa816f4..a140b9fcd75 100644 --- a/massa-models/src/config/constants.rs +++ b/massa-models/src/config/constants.rs @@ -45,7 +45,7 @@ lazy_static::lazy_static! { .saturating_add(MassaTime::from_millis(1000 * 10)) ) } else { - 1663678800000.into() // Saturday, September 20, 2022 13:00:00 PM UTC + 1663754400000.into() // Saturday, September 21, 2022 10:00:00 PM UTC }; /// TESTNET: time when the blockclique is ended. @@ -64,7 +64,7 @@ lazy_static::lazy_static! { if cfg!(feature = "sandbox") { "SAND.0.0" } else { - "TEST.14.6" + "TEST.14.7" } .parse() .unwrap() From ffd1c4c0c1b16b618a87df67535bfcab2124ac45 Mon Sep 17 00:00:00 2001 From: AurelienFT Date: Wed, 21 Sep 2022 09:51:07 +0200 Subject: [PATCH 2/3] Add incompatibility --- massa-models/src/version.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/massa-models/src/version.rs b/massa-models/src/version.rs index 9ce378bf537..2347933b7cb 100644 --- a/massa-models/src/version.rs +++ b/massa-models/src/version.rs @@ -191,8 +191,8 @@ impl Version { pub fn is_compatible(&self, other: &Version) -> bool { self.instance == other.instance && self.major == other.major - && self.minor >= 6 - && other.minor >= 6 + && self.minor >= 7 + && other.minor >= 7 } } From dec42a05a603b3f1a08e60aa00c6605786f7e2f0 Mon Sep 17 00:00:00 2001 From: AurelienFT <32803821+AurelienFT@users.noreply.github.com> Date: Wed, 21 Sep 2022 09:51:24 +0200 Subject: [PATCH 3/3] Update massa-models/src/config/constants.rs Co-authored-by: Damir Vodenicarevic --- massa-models/src/config/constants.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/massa-models/src/config/constants.rs b/massa-models/src/config/constants.rs index a140b9fcd75..39b1a5349fb 100644 --- a/massa-models/src/config/constants.rs +++ b/massa-models/src/config/constants.rs @@ -45,7 +45,7 @@ lazy_static::lazy_static! { .saturating_add(MassaTime::from_millis(1000 * 10)) ) } else { - 1663754400000.into() // Saturday, September 21, 2022 10:00:00 PM UTC + 1663754400000.into() // Wednesday, September 21, 2022 10:00:00 PM UTC }; /// TESTNET: time when the blockclique is ended.