Skip to content

Commit c95869e

Browse files
authored
Merge pull request #1765 from KomodoPlatform/vote2022-patch
update version number and CI
2 parents eaa40af + abc54d9 commit c95869e

File tree

14 files changed

+26
-22
lines changed

14 files changed

+26
-22
lines changed

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,17 @@ jobs:
5757
ref: ${{ github.event.pull_request.head.sha }}
5858
submodules: 'true'
5959

60-
61-
- uses: actions/setup-python@v2
60+
- name: Setup Python
61+
uses: actions/setup-python@v3
6262
with:
63-
python-version: '3.8'
63+
python-version: '3.9'
6464

6565
- name: Install QT (Linux)
6666
if: runner.os == 'Linux'
6767
uses: KomodoPlatform/[email protected]
6868
with:
6969
version: ${{ matrix.qt }}
70+
setup-python: 'false'
7071
host: 'linux'
7172
target: 'desktop'
7273
dir: '${{ github.workspace }}'
@@ -79,6 +80,7 @@ jobs:
7980
uses: KomodoPlatform/[email protected]
8081
with:
8182
version: ${{ matrix.qt }}
83+
setup-python: 'false'
8284
host: 'mac'
8385
target: 'desktop'
8486
dir: '${{ github.workspace }}'
@@ -358,5 +360,4 @@ jobs:
358360
name: ${{ env.artifact_name_installer }}
359361
path: ./bundled/windows/${{ env.DEX_PROJECT_NAME }}_installer.exe
360362
retention-days: 7
361-
362-
363+

.github/workflows/atomicdex-desktop-release-vt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
-
1212
name: VirusTotal Scan
13-
uses: crazy-max/ghaction-virustotal@v2.2.1
13+
uses: crazy-max/ghaction-virustotal@v2.4.1
1414
with:
1515
vt_api_key: ${{ secrets.VT_API_KEY }}
1616
github_token: ${{ github.token }}

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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.5)
14+
project(${DEX_PROJECT_NAME} LANGUAGES CXX VERSION 0.5.5.1)
1515
message(STATUS "${PROJECT_NAME} is version ${PROJECT_VERSION}")
1616

1717
include(cmake_default_options)
File renamed without changes.

ci_tools_atomic_dex/ci_scripts/osx_script.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@ brew update
55
brew tap-new $USER/local-nim
66
brew extract --version=1.4.8 nim $USER/local-nim
77

8+
brew unlink libtool
9+
wget https://raw.githubusercontent.com/Homebrew/homebrew-core/0fbd6e24c4122e18ade1ec6c5916cb21de14f352/Formula/libtool.rb
10+
brew install libtool.rb
11+
812
brew install autoconf \
913
automake \
10-
libtool \
1114
pkgconfig \
1215
wget \
1316

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

Lines changed: 1 addition & 1 deletion
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.5</Version>
4+
<Version>0.5.5.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

Lines changed: 2 additions & 2 deletions
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.5</Version>
6-
<ReleaseDate>2021-12-06</ReleaseDate>
5+
<Version>0.5.5.1</Version>
6+
<ReleaseDate>2022-05-11</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

Lines changed: 1 addition & 1 deletion
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.5</Version>
4+
<Version>0.5.5.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

Lines changed: 2 additions & 2 deletions
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.5</Version>
6-
<ReleaseDate>2021-12-06</ReleaseDate>
5+
<Version>0.5.5.1</Version>
6+
<ReleaseDate>2022-05-11</ReleaseDate>
77
<Licenses>
88
<License name="GNU General Public License v2.0" file="license.txt" />
99
</Licenses>

0 commit comments

Comments
 (0)