Skip to content

Commit

Permalink
Merge pull request #3046 from massalabs/test_14_7
Browse files Browse the repository at this point in the history
Update new version.
  • Loading branch information
damip authored Sep 21, 2022
2 parents 56dda58 + dec42a0 commit 8326fee
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/technical-doc/openrpc.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
6 changes: 3 additions & 3 deletions docs/testnet/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <testnet-running>`.

- `Windows executable <https://github.com/massalabs/massa/releases/download/TEST.14.6/massa_TEST.14.6_release_windows.zip>`_
- `Linux binary <https://github.com/massalabs/massa/releases/download/TEST.14.6/massa_TEST.14.6_release_linux.tar.gz>`_ - only works with libc2.28 at least (for example Ubuntu 20.04 and higher)
- `MacOS binary <https://github.com/massalabs/massa/releases/download/TEST.14.6/massa_TEST.14.6_release_macos.tar.gz>`_
- `Windows executable <https://github.com/massalabs/massa/releases/download/TEST.14.7/massa_TEST.14.7_release_windows.zip>`_
- `Linux binary <https://github.com/massalabs/massa/releases/download/TEST.14.7/massa_TEST.14.7_release_linux.tar.gz>`_ - only works with libc2.28 at least (for example Ubuntu 20.04 and higher)
- `MacOS binary <https://github.com/massalabs/massa/releases/download/TEST.14.7/massa_TEST.14.7_release_macos.tar.gz>`_

From source code
================
Expand Down
4 changes: 2 additions & 2 deletions massa-models/src/config/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -64,7 +64,7 @@ lazy_static::lazy_static! {
if cfg!(feature = "sandbox") {
"SAND.0.0"
} else {
"TEST.14.6"
"TEST.14.7"
}
.parse()
.unwrap()
Expand Down
4 changes: 2 additions & 2 deletions massa-models/src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}

Expand Down

0 comments on commit 8326fee

Please sign in to comment.