Skip to content

Commit 146b1ea

Browse files
authored
Merge pull request #2217 from KomodoPlatform/update_version_0571
0.5.7 -> 0.5.7.1
2 parents 737b58f + 551b44f commit 146b1ea

File tree

10 files changed

+20
-20
lines changed

10 files changed

+20
-20
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-
- AtomicDEX Version: [e.g. 0.5.7]
29+
- AtomicDEX Version: [e.g. 0.5.7.1]
3030
- Build branch: [e.g. master/dev]
3131

3232

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.5.7)
14+
project(${DEX_PROJECT_NAME} LANGUAGES CXX VERSION 0.5.7.1)
1515
message(STATUS "${PROJECT_NAME} is version ${PROJECT_VERSION}")
1616

1717
include(cmake_default_options)

ci_tools_atomic_dex/installer/osx/config/config.xml.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Installer>
33
<Name>${DEX_DISPLAY_NAME}</Name>
4-
<Version>0.5.7</Version>
4+
<Version>0.5.7.1</Version>
55
<Title>${DEX_DISPLAY_NAME} Installer</Title>
66
<ProductUrl>${DEX_WEBSITE}</ProductUrl>
77
<Publisher>${DEX_COMPANY}</Publisher>

ci_tools_atomic_dex/installer/osx/packages/com.komodoplatform.atomicdex/meta/package.xml.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<Package>
33
<DisplayName>${DEX_DISPLAY_NAME}</DisplayName>
44
<Description>Install ${DEX_DISPLAY_NAME}.</Description>
5-
<Version>0.5.7</Version>
6-
<ReleaseDate>2022-11-09</ReleaseDate>
5+
<Version>0.5.7.1</Version>
6+
<ReleaseDate>2023-06-03</ReleaseDate>
77
<Licenses>
88
<License name="GNU General Public License v2.0" file="license.txt" />
99
</Licenses>

ci_tools_atomic_dex/installer/windows/config/config.xml.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Installer>
33
<Name>@DEX_DISPLAY_NAME@</Name>
4-
<Version>0.5.7</Version>
4+
<Version>0.5.7.1</Version>
55
<Title>@DEX_DISPLAY_NAME@ Installer</Title>
66
<ProductUrl>@DEX_WEBSITE@</ProductUrl>
77
<Publisher>@DEX_COMPANY@</Publisher>

ci_tools_atomic_dex/installer/windows/packages/com.komodoplatform.atomicdex/meta/package.xml.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<Package>
33
<DisplayName>${DEX_DISPLAY_NAME}</DisplayName>
44
<Description>Install ${DEX_DISPLAY_NAME}.</Description>
5-
<Version>0.5.7</Version>
6-
<ReleaseDate>2022-10-24</ReleaseDate>
5+
<Version>0.5.7.1</Version>
6+
<ReleaseDate>2023-03-06</ReleaseDate>
77
<Licenses>
88
<License name="GNU General Public License v2.0" file="license.txt" />
99
</Licenses>

cmake/install/macos/dex_install.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ if (APPLE)
44
MACOSX_BUNDLE_BUNDLE_NAME "${PROJECT_NAME}"
55
RESOURCE ${ICON}
66
MACOSX_BUNDLE_ICON_FILE dex-logo
7-
MACOSX_BUNDLE_SHORT_VERSION_STRING 0.5.7
8-
MACOSX_BUNDLE_LONG_VERSION_STRING 0.5.7
7+
MACOSX_BUNDLE_SHORT_VERSION_STRING 0.5.7.1
8+
MACOSX_BUNDLE_LONG_VERSION_STRING 0.5.7.1
99
MACOSX_BUNDLE_INFO_PLIST "${PROJECT_SOURCE_DIR}/cmake/MacOSXBundleInfo.plist.in")
1010
add_custom_command(TARGET ${PROJECT_NAME}
1111
POST_BUILD COMMAND

src/core/atomicdex/services/mm2/mm2.service.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ namespace
6363
SPDLOG_INFO("There is a precedent configuration file, upgrading the new one with precedent settings");
6464

6565
//! Old cfg to ifs
66-
LOG_PATH("opening file: {}", precedent_version_cfg_path);
66+
LOG_PATH("opening previous version coins file: {}", precedent_version_cfg_path);
6767
QFile ifs;
6868
ifs.setFileName(atomic_dex::std_path_to_qstring(precedent_version_cfg_path));
6969
ifs.open(QIODevice::Text | QIODevice::ReadOnly);
@@ -72,7 +72,7 @@ namespace
7272

7373
//! New cfg to ifs
7474
std::filesystem::path actual_version_filepath = cfg_path / (std::string(atomic_dex::get_raw_version()) + "-coins."s + wallet_name + ".json"s);
75-
LOG_PATH("opening file: {}", actual_version_filepath);
75+
LOG_PATH("opening new version coins file: {}", actual_version_filepath);
7676
QFile actual_version_ifs;
7777
actual_version_ifs.setFileName(atomic_dex::std_path_to_qstring(actual_version_filepath));
7878
actual_version_ifs.open(QIODevice::Text | QIODevice::ReadOnly);
@@ -97,13 +97,13 @@ namespace
9797
}
9898
}
9999

100-
LOG_PATH("closing file: {}", precedent_version_cfg_path);
100+
LOG_PATH("closing old version coins file: {}", precedent_version_cfg_path);
101101
ifs.close();
102-
LOG_PATH("closing file: {}", actual_version_filepath);
102+
LOG_PATH("closing new version coins file: {}", actual_version_filepath);
103103
actual_version_ifs.close();
104104

105105
//! Write contents
106-
LOG_PATH("opening file: {}", actual_version_filepath);
106+
LOG_PATH("opening new version file: {}", actual_version_filepath);
107107
QFile ofs;
108108
ofs.setFileName(atomic_dex::std_path_to_qstring(actual_version_filepath));
109109
ofs.open(QIODevice::Text | QIODevice::WriteOnly);
@@ -116,7 +116,7 @@ namespace
116116
{
117117
SPDLOG_ERROR("error: {}", ec.message());
118118
}
119-
LOG_PATH("closing file: {}", actual_version_filepath);
119+
LOG_PATH("closing new version file: {}", actual_version_filepath);
120120
ofs.close();
121121
}
122122
}

src/core/atomicdex/version/version.hpp

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

2727
constexpr int
@@ -33,12 +33,12 @@ namespace atomic_dex
3333
constexpr const char*
3434
get_raw_version()
3535
{
36-
return "0.5.7";
36+
return "0.5.7.1";
3737
}
3838

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

vcpkg.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "atomicdex-desktop",
3-
"version-string": "0.5.6.1",
3+
"version-string": "0.5.7.1",
44
"dependencies": [
55
"entt",
66
"boost-multiprecision",

0 commit comments

Comments
 (0)