Skip to content

Commit 1e6c540

Browse files
authored
Merge pull request #2457 from KomodoPlatform/increment-version
increment to v0.7.2
2 parents 7e6cda2 + bef62b7 commit 1e6c540

File tree

9 files changed

+16
-12
lines changed

9 files changed

+16
-12
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Please describe what you expected to happen.
2626
**Operating Environment(s):**
2727
- OS: [e.g. Windows/OSX/Linux. If Linux, include distro. ]
2828
- OS version: [e.g. 7/10/11, 10.13/10.15, 18.04/20.04 ]
29-
- Komodo Wallet Version: [e.g. 0.7.1]
29+
- Komodo Wallet Desktop Version: [e.g. 0.7.2]
3030
- Build branch: [e.g. master/dev]
3131

3232

.github/workflows/atomicdex-desktop-cd.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ env:
99
DEX_PROJECT_NAME: "komodo-wallet"
1010
DEX_DISPLAY_NAME: "Komodo Wallet"
1111
DEX_COMPANY: "KomodoPlatform"
12-
DEX_VERSION: "0.7.1"
12+
DEX_VERSION: "0.7.2"
1313
DEX_WEBSITE: "https://atomicdex.io/"
1414

1515
jobs:

.github/workflows/atomicdex-desktop-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
DEX_PROJECT_NAME: "komodo-wallet"
1818
DEX_DISPLAY_NAME: "Komodo Wallet"
1919
DEX_COMPANY: "KomodoPlatform"
20-
DEX_VERSION: "0.7.1"
20+
DEX_VERSION: "0.7.2"
2121
DEX_WEBSITE: "https://atomicdex.io/"
2222
VCPKG_DEFAULT_BINARY_CACHE: ${{ github.workspace }}/b/vcpkg_cache
2323
VCPKG_BINARY_SOURCES: clear;x-gha,readwrite

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ include(vcpkg_prerequisites)
1111
include(qt_prerequisites)
1212
include(cfg_hash)
1313

14-
project(${DEX_PROJECT_NAME} LANGUAGES CXX VERSION 0.7.1)
14+
project(${DEX_PROJECT_NAME} LANGUAGES CXX VERSION 0.7.2)
1515
message(STATUS "${PROJECT_NAME} is version ${PROJECT_VERSION}")
1616

1717
include(cmake_default_options)

atomic_defi_design/Dex/Wallet/Main.qml

+4-1
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,10 @@ Item
675675
content.anchors.leftMargin: enabled ? 23 : 48
676676
content.anchors.rightMargin: 23
677677

678-
onClicked: Qt.openUrlExternally("https://vote.komodoplatform.com/")
678+
onClicked: {
679+
let url = "https://vote.komodoplatform.com/" + api_wallet_page.ticker.toLowerCase() + "/";
680+
Qt.openUrlExternally(url);
681+
}
679682

680683
Row
681684
{

cmake/project.metadata.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set(DEX_DISPLAY_NAME "Komodo Wallet")
77
set(DEX_MAINTENANCE_TOOL_NAME "Komodo Wallet Maintenance Tool")
88
set(DEX_COMPANY "KomodoPlatform")
99
set(DEX_WEBSITE "https://atomicdex.io/")
10-
set(DEX_VERSION "0.7.1")
10+
set(DEX_VERSION "0.7.2")
1111
set(DEX_SUPPORT_PAGE "https://support.komodoplatform.com/support/home")
1212
set(DEX_DISCORD "https://komodoplatform.com/discord")
1313
set(DEX_TWITTER "https://twitter.com/AtomicDEX")

src/core/atomicdex/constants/dex.constants.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ namespace atomic_dex
1212
g_second_primary_dex_coin,
1313
"BTC-segwit",
1414
"DGB-segwit",
15+
"VOTE2024",
1516
};
1617
inline const std::vector<std::string> g_faucet_coins{
1718
"DOC",

src/core/atomicdex/version/version.hpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,24 +21,24 @@ namespace atomic_dex
2121
constexpr const char*
2222
get_version()
2323
{
24-
return "0.7.1-beta";
24+
return "0.7.2-beta";
2525
}
2626

2727
constexpr int
2828
get_num_version() noexcept
2929
{
30-
return 71;
30+
return 72;
3131
}
3232

3333
constexpr const char*
3434
get_raw_version()
3535
{
36-
return "0.7.1";
36+
return "0.7.2";
3737
}
3838

3939
constexpr const char*
4040
get_precedent_raw_version()
4141
{
42-
return "0.7.0";
42+
return "0.7.1";
4343
}
4444
} // namespace atomic_dex

vcpkg.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "komodo-wallet",
3-
"version-string": "0.7.1",
2+
"name": "komodo-wallet-desktop",
3+
"version-string": "0.7.2",
44
"dependencies": [
55
"entt",
66
"boost-multiprecision",

0 commit comments

Comments
 (0)