Skip to content

Commit

Permalink
Merge pull request #2457 from KomodoPlatform/increment-version
Browse files Browse the repository at this point in the history
increment to v0.7.2
  • Loading branch information
smk762 authored Jun 21, 2024
2 parents 7e6cda2 + bef62b7 commit 1e6c540
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Please describe what you expected to happen.
**Operating Environment(s):**
- OS: [e.g. Windows/OSX/Linux. If Linux, include distro. ]
- OS version: [e.g. 7/10/11, 10.13/10.15, 18.04/20.04 ]
- Komodo Wallet Version: [e.g. 0.7.1]
- Komodo Wallet Desktop Version: [e.g. 0.7.2]
- Build branch: [e.g. master/dev]


Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/atomicdex-desktop-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
DEX_PROJECT_NAME: "komodo-wallet"
DEX_DISPLAY_NAME: "Komodo Wallet"
DEX_COMPANY: "KomodoPlatform"
DEX_VERSION: "0.7.1"
DEX_VERSION: "0.7.2"
DEX_WEBSITE: "https://atomicdex.io/"

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/atomicdex-desktop-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
DEX_PROJECT_NAME: "komodo-wallet"
DEX_DISPLAY_NAME: "Komodo Wallet"
DEX_COMPANY: "KomodoPlatform"
DEX_VERSION: "0.7.1"
DEX_VERSION: "0.7.2"
DEX_WEBSITE: "https://atomicdex.io/"
VCPKG_DEFAULT_BINARY_CACHE: ${{ github.workspace }}/b/vcpkg_cache
VCPKG_BINARY_SOURCES: clear;x-gha,readwrite
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ include(vcpkg_prerequisites)
include(qt_prerequisites)
include(cfg_hash)

project(${DEX_PROJECT_NAME} LANGUAGES CXX VERSION 0.7.1)
project(${DEX_PROJECT_NAME} LANGUAGES CXX VERSION 0.7.2)
message(STATUS "${PROJECT_NAME} is version ${PROJECT_VERSION}")

include(cmake_default_options)
Expand Down
5 changes: 4 additions & 1 deletion atomic_defi_design/Dex/Wallet/Main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,10 @@ Item
content.anchors.leftMargin: enabled ? 23 : 48
content.anchors.rightMargin: 23

onClicked: Qt.openUrlExternally("https://vote.komodoplatform.com/")
onClicked: {
let url = "https://vote.komodoplatform.com/" + api_wallet_page.ticker.toLowerCase() + "/";
Qt.openUrlExternally(url);
}

Row
{
Expand Down
2 changes: 1 addition & 1 deletion cmake/project.metadata.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set(DEX_DISPLAY_NAME "Komodo Wallet")
set(DEX_MAINTENANCE_TOOL_NAME "Komodo Wallet Maintenance Tool")
set(DEX_COMPANY "KomodoPlatform")
set(DEX_WEBSITE "https://atomicdex.io/")
set(DEX_VERSION "0.7.1")
set(DEX_VERSION "0.7.2")
set(DEX_SUPPORT_PAGE "https://support.komodoplatform.com/support/home")
set(DEX_DISCORD "https://komodoplatform.com/discord")
set(DEX_TWITTER "https://twitter.com/AtomicDEX")
Expand Down
1 change: 1 addition & 0 deletions src/core/atomicdex/constants/dex.constants.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ namespace atomic_dex
g_second_primary_dex_coin,
"BTC-segwit",
"DGB-segwit",
"VOTE2024",
};
inline const std::vector<std::string> g_faucet_coins{
"DOC",
Expand Down
8 changes: 4 additions & 4 deletions src/core/atomicdex/version/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,24 +21,24 @@ namespace atomic_dex
constexpr const char*
get_version()
{
return "0.7.1-beta";
return "0.7.2-beta";
}

constexpr int
get_num_version() noexcept
{
return 71;
return 72;
}

constexpr const char*
get_raw_version()
{
return "0.7.1";
return "0.7.2";
}

constexpr const char*
get_precedent_raw_version()
{
return "0.7.0";
return "0.7.1";
}
} // namespace atomic_dex
4 changes: 2 additions & 2 deletions vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "komodo-wallet",
"version-string": "0.7.1",
"name": "komodo-wallet-desktop",
"version-string": "0.7.2",
"dependencies": [
"entt",
"boost-multiprecision",
Expand Down

0 comments on commit 1e6c540

Please sign in to comment.