Skip to content

Commit

Permalink
Update version tag
Browse files Browse the repository at this point in the history
  • Loading branch information
TLCFEM committed Sep 11, 2024
1 parent b06c009 commit 75da641
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/master-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ jobs:
ls -halt
if [ "${{ github.event_name }}" == "push" ]; then
choco apikey --key ${{ secrets.CHOCO_KEY }} --source https://push.chocolatey.org/
choco push suanpan.3.5.0.nupkg --source https://push.chocolatey.org/
choco push suanpan.3.6.0.nupkg --source https://push.chocolatey.org/
fi
- name: Release SHA256
if: matrix.mkl == 'ON' && matrix.vtk == 'ON' && matrix.avx == 'ON'
Expand All @@ -244,8 +244,8 @@ jobs:
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: suanpan.3.5.0.nupkg
asset_name: suanpan.3.5.0.nupkg
file: suanpan.3.6.0.nupkg
asset_name: suanpan.3.6.0.nupkg
tag: ${{ env.SP_TIME }}
prerelease: true
overwrite: true
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ if (CMAKE_SYSTEM_NAME MATCHES "Linux")
set(CPACK_PACKAGE_ICON ${ROOT}/Resource/suanPan-ua.svg)
set(CPACK_PACKAGE_RELEASE 1)
set(CPACK_PACKAGE_VENDOR "tlcfem")
set(CPACK_PACKAGE_VERSION "3.5.0")
set(CPACK_PACKAGE_VERSION "3.6.0")
set(CPACK_PACKAGE_DESCRIPTION "An Open Source, Parallel and Heterogeneous Finite Element Analysis Framework")
set(CPACK_PACKAGE_HOMEPAGE_URL "https://github.com/TLCFEM/suanPan")

Expand Down
2 changes: 1 addition & 1 deletion Enhancement/suanPan.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "suanPan"
#define MyAppVersion "3.5"
#define MyAppVersion "3.6"
#define MyAppPublisher "Theodore Chang"
#define MyAppURL "https://github.com/TLCFEM/suanPan"
#define MyAppExeName "suanPan.exe"
Expand Down
2 changes: 1 addition & 1 deletion Enhancement/suanpan.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>suanpan</id>
<version>3.5</version>
<version>3.6</version>
<packageSourceUrl>https://github.com/TLCFEM/suanPan</packageSourceUrl>
<owners>Theodore Chang</owners>
<title>suanPan</title>
Expand Down
8 changes: 4 additions & 4 deletions Resource/suanPan.rc
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 3,5,0,0
PRODUCTVERSION 3,5,0,0
FILEVERSION 3,6,0,0
PRODUCTVERSION 3,6,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -69,12 +69,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "TLCFEM"
VALUE "FileDescription", "suanPan --- An Open Source, Parallel and Heterogeneous Finite Element Analysis Framework"
VALUE "FileVersion", "3.5.0.0"
VALUE "FileVersion", "3.6.0.0"
VALUE "InternalName", "suanPan"
VALUE "LegalCopyright", "Copyright (C) 2017-2024 Theodore Chang https://github.com/TLCFEM/suanPan"
VALUE "OriginalFilename", "suanPan"
VALUE "ProductName", "suanPan"
VALUE "ProductVersion", "3.5.0.0"
VALUE "ProductVersion", "3.6.0.0"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion Toolbox/argument.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ using std::ifstream;
using std::ofstream;

constexpr auto SUANPAN_MAJOR = 3;
constexpr auto SUANPAN_MINOR = 5;
constexpr auto SUANPAN_MINOR = 6;
constexpr auto SUANPAN_PATCH = 0;
constexpr auto SUANPAN_CODE = "Canopus";

Expand Down
2 changes: 1 addition & 1 deletion snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ issues: https://github.com/TLCFEM/suanPan/issues
license: GPL-3.0
source-code: https://github.com/TLCFEM/suanPan
summary: An Open Source, Parallel and Heterogeneous Finite Element Analysis Framework
version: "3.5"
version: "3.6"
website: https://bit.ly/suanpan-doc
description: |
[**suanPan**](https://github.com/TLCFEM/suanPan) is a finite element method (FEM) simulation platform for applications
Expand Down

0 comments on commit 75da641

Please sign in to comment.