Skip to content

Commit

Permalink
sets hardcoded version to 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Park authored and Mike Park committed Nov 17, 2022
1 parent f79941b commit f5fffa0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ if (GIT_EXEC AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git")
execute_process(COMMAND sh -c "${GIT_EXEC} describe --tag | tr -d '\n'"
OUTPUT_VARIABLE REFINE_VERSION)
message(STATUS "refine version: ${REFINE_VERSION}")
else()
set(REFINE_VERSION 3.0.0)
message(STATUS "not git repo, guess refine version: ${REFINE_VERSION}")
endif()

option(refine_ENABLE_TESTS "build refine tests and enable ctest support" ON)
Expand Down
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@

Thu, Nov 17, 2022 : Released Refine 3.0.0

- ref_axisymmeric has been incorperated into ref --axi
- installed binaries are now ref, refmpi, and refmpifull
- use a subset of cores when mesh is to small for nproc
- ref_grid_partitioner_full(ref_grid) = REF_TRUE to use all cores
- ref distance computes wall distance
- ref visualize translates solution formats
- ref collar inflates surface to create swept mesh for sonic boom

Mon, Sep 29, 2020 : Released Refine 1.9.3

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

AC_PREREQ(2.53)

define([git_describe], esyscmd([sh -c "(git describe --tag || echo '1.9.4') | tr -d '\n'"]))dnl
define([git_describe], esyscmd([sh -c "(git describe --tag || echo '3.0.0') | tr -d '\n'"]))dnl
AC_INIT([refine], [git_describe], [fun3d-support@lists.nasa.gov])

AC_CONFIG_HEADERS(config.h)
Expand Down
2 changes: 2 additions & 0 deletions src/todo
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,8 @@ ooooooooooooooooo

+++++++++++++++++

+ 3.0.0

+ refmpi bootstrap nice messsage
+ tecplot surface self intersection locations on tetgen failure
+ tetgen: better q description, add O descript, add S1000
Expand Down

0 comments on commit f5fffa0

Please sign in to comment.