Skip to content

Commit

Permalink
update version to 3.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
JimmyShi22 committed Apr 22, 2024
1 parent 16142f3 commit c3075f2
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ endif()

list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)

set(VERSION "3.7.1")
set(VERSION "3.7.3")
set(VERSION_SUFFIX "")
include(Options)
configure_project()
Expand Down
2 changes: 1 addition & 1 deletion bcos-framework/bcos-framework/ledger/Features.h
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class Features
{Flag::bugfix_empty_abi_reset, Flag::bugfix_eip55_addr,
Flag::bugfix_sharding_call_in_child_executive,
Flag::bugfix_internal_create_permission_denied}},
{protocol::BlockVersion::V3_7_2_VERSION, {Flag::bugfix_eoa_as_contract}}});
{protocol::BlockVersion::V3_7_3_VERSION, {Flag::bugfix_eoa_as_contract}}});
for (const auto& upgradeFeatures : upgradeRoadmap)
{
if (((to < protocol::BlockVersion::V3_2_7_VERSION) && (to >= upgradeFeatures.to)) ||
Expand Down
5 changes: 3 additions & 2 deletions bcos-framework/bcos-framework/protocol/Protocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ enum ProtocolVersion : uint32_t

enum class BlockVersion : uint32_t
{
V3_7_3_VERSION = 0x03070300,
V3_7_2_VERSION = 0x03070200,
V3_7_1_VERSION = 0x03070100,
V3_7_0_VERSION = 0x03070000,
Expand All @@ -134,7 +135,7 @@ enum class BlockVersion : uint32_t
V3_0_VERSION = 0x03000000,
RC4_VERSION = 4,
MIN_VERSION = RC4_VERSION,
MAX_VERSION = V3_7_1_VERSION,
MAX_VERSION = V3_7_3_VERSION,
};

enum class TransactionVersion : uint32_t
Expand All @@ -149,7 +150,7 @@ const std::string RC4_VERSION_STR = "3.0.0-rc4";
const std::string RC_VERSION_PREFIX = "3.0.0-rc";

const BlockVersion DEFAULT_VERSION = bcos::protocol::BlockVersion::V3_7_1_VERSION;
const std::string DEFAULT_VERSION_STR = "3.7.1";
const std::string DEFAULT_VERSION_STR = "3.7.3";
const uint8_t MAX_MAJOR_VERSION = std::numeric_limits<uint8_t>::max();
const uint8_t MIN_MAJOR_VERSION = 3;

Expand Down
2 changes: 1 addition & 1 deletion bcos-sdk/SWIG/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ println("Notice: current gradle version is " + gradle.gradleVersion)

allprojects {
group = 'org.fisco-bcos'
version = '3.7.1'
version = '3.7.3'

apply plugin: 'maven-publish'
apply plugin: 'java'
Expand Down
2 changes: 1 addition & 1 deletion tools/BcosAirBuilder/build_chain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ ca_dir=""
prometheus_dir=""
config_path=""
docker_mode=
default_version="v3.7.1"
default_version="v3.7.3"
compatibility_version=${default_version}
default_mtail_version="3.0.0-rc49"
compatibility_mtail_version=${default_mtail_version}
Expand Down
2 changes: 1 addition & 1 deletion tools/BcosBuilder/max/conf/config-build-example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ consensus_type = "pbft"
# transaction gas limit
gas_limit = "3000000000"
# compatible version, can be dynamically upgraded through setSystemConfig
compatibility_version="3.7.1"
compatibility_version="3.7.3"

[[agency]]
name = "agencyA"
Expand Down
2 changes: 1 addition & 1 deletion tools/BcosBuilder/max/conf/config-deploy-example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ consensus_type = "pbft"
# transaction gas limit
gas_limit = "3000000000"
# compatible version, can be dynamically upgraded through setSystemConfig
compatibility_version="3.7.1"
compatibility_version="3.7.3"

[[agency]]
name = "agencyA"
Expand Down
2 changes: 1 addition & 1 deletion tools/BcosBuilder/pro/conf/config-build-example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ consensus_type = "pbft"
# transaction gas limit
gas_limit = "3000000000"
# compatible version, can be dynamically upgraded through setSystemConfig
compatibility_version="3.7.1"
compatibility_version="3.7.3"

[[agency]]
name = "agencyA"
Expand Down
2 changes: 1 addition & 1 deletion tools/BcosBuilder/pro/conf/config-deploy-example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ consensus_type = "pbft"
# transaction gas limit
gas_limit = "3000000000"
# compatible version, can be dynamically upgraded through setSystemConfig
compatibility_version="3.7.1"
compatibility_version="3.7.3"

[[agency]]
name = "agencyA"
Expand Down
2 changes: 1 addition & 1 deletion tools/BcosBuilder/src/tpl/config.genesis
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

[version]
; compatible version, can be dynamically upgraded through setSystemConfig
compatibility_version=3.7.1
compatibility_version=3.7.3

[tx]
; transaction gas limit
Expand Down
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fiscobcos",
"version-string": "3.7.1",
"version-string": "3.7.3",
"homepage": "https://github.com/FISCO-BCOS/FISCO-BCOS",
"description": "FISCO BCOS",
"dependencies": [
Expand Down

0 comments on commit c3075f2

Please sign in to comment.