Skip to content

Commit

Permalink
Merge branch 'update.version' into 'master.dev'
Browse files Browse the repository at this point in the history
Increased version to 3.5.0

See merge request piclas/piclas!1009
  • Loading branch information
pnizenkov committed Dec 20, 2024
2 parents fcbbf69 + 60d20d3 commit 8d591ce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cmake-ninja.yml
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: piclas-binaries-v3.4.0
name: piclas-binaries-v3.5.0
path: artifacts

- name: Upload release asset
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
compare_column_file = PartAnalyze.csv ! data file name
compare_column_reference_file = Electrons_ref.csv ! data file name
compare_column_index = 9 ! column index for comparison
compare_column_tolerance_value = 20e9 ! tolerance (depends on machine accuracy and MPI)
compare_column_tolerance_value = 30e9 ! tolerance (depends on machine accuracy and MPI)
compare_column_tolerance_type = absolute ! absolute or relative tolerance
2 changes: 1 addition & 1 deletion src/globals/globals_vars.f90
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ MODULE MOD_Globals_Vars
!-----------------------------------------------------------------------------------------------------------------------------------
CHARACTER(LEN=6),PARAMETER :: ProgramName = 'PICLas' !> name of this program
INTEGER,PARAMETER :: MajorVersion = 3 !> FileVersion number saved in each hdf5 file with hdf5 header
INTEGER,PARAMETER :: MinorVersion = 4 !> FileVersion number saved in each hdf5 file with hdf5 header
INTEGER,PARAMETER :: MinorVersion = 5 !> FileVersion number saved in each hdf5 file with hdf5 header
INTEGER,PARAMETER :: PatchVersion = 0 !> FileVersion number saved in each hdf5 file with hdf5 header
REAL,PARAMETER :: FileVersionReal = REAL(MajorVersion,8)+REAL(MinorVersion,8)/10.+REAL(PatchVersion,8)/100.
!> OLD number saved in each hdf5 file with hdf5 header
Expand Down

0 comments on commit 8d591ce

Please sign in to comment.