Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
damip committed Sep 17, 2022
1 parent f0ae0c3 commit d87f9f1
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.3",
"version": "TEST.14.4",
"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.3/massa_TEST.14.3_release_windows.zip>`_
- `Linux binary <https://github.com/massalabs/massa/releases/download/TEST.14.3/massa_TEST.14.3_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.3/massa_TEST.14.3_release_macos.tar.gz>`_
- `Windows executable <https://github.com/massalabs/massa/releases/download/TEST.14.4/massa_TEST.14.4_release_windows.zip>`_
- `Linux binary <https://github.com/massalabs/massa/releases/download/TEST.14.4/massa_TEST.14.4_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.4/massa_TEST.14.4_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 {
1663351200000.into() // Friday, September 16, 2022 18:00:00 UTC
1663419600000.into() // Saturday, September 17, 2022 1: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.3"
"TEST.14.4"
}
.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 >= 2
&& other.minor >= 2
&& self.minor >= 3
&& other.minor >= 3
}
}

Expand Down

0 comments on commit d87f9f1

Please sign in to comment.