Skip to content

Commit

Permalink
Prepare release.
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot-abi committed Mar 24, 2024
1 parent c35eed4 commit 3e45a6a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
CHANGE LOG: Zinc Library

v4.1.1
Fix empty classifiers for Python packaging.
Drop support for OS X Mountain Lion and below (last released 2015).

v4.1.0
Fix optimisation with conditional field applying partially to elements' nodes.
Region read with single time is ignored with a warning for field value types not supporting time sequence.
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if(POLICY CMP0086)
endif()

# This is the project name and shows up in IDEs
project(Zinc VERSION 4.1.0 LANGUAGES C CXX)
project(Zinc VERSION 4.1.1 LANGUAGES C CXX)

# Set this to the development release or release candidate version.
set(Zinc_DEVELOPER_VERSION "")
Expand Down
11 changes: 1 addition & 10 deletions tests/GTestChecks.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,7 @@ IF(NOT GTEST_SUCCESS)
SET(GTEST_THREAD_LIBRARIES ${CMAKE_THREAD_LIBS_INIT})
ENDIF()


IF(APPLE)
EXEC_PROGRAM(uname ARGS -v OUTPUT_VARIABLE DARWIN_VERSION)
STRING(REGEX MATCH "[0-9]+" DARWIN_VERSION ${DARWIN_VERSION})
#MESSAGE(STATUS "DARWIN_VERSION=${DARWIN_VERSION}")
#DARWIN version 13 = Mac 0SX 10.9
IF(DARWIN_VERSION GREATER 12)
ADD_DEFINITIONS(-DGTEST_USE_OWN_TR1_TUPLE=1)
ENDIF ()
ADD_DEFINITIONS(-DGTEST_USE_OWN_TR1_TUPLE=1)
ENDIF()



0 comments on commit 3e45a6a

Please sign in to comment.