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..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 { - 1663678800000.into() // Saturday, September 20, 2022 13:00:00 PM UTC + 1663754400000.into() // Wednesday, 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() 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 } }