Skip to content

Commit

Permalink
Merge pull request #18 from sillydan1/dev
Browse files Browse the repository at this point in the history
Release v3.0.3
  • Loading branch information
sillydan1 committed Apr 23, 2024
2 parents 9017577 + 01a5544 commit 64e4e37
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
7 changes: 4 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
cmake_minimum_required(VERSION 3.18)
project(expr VERSION 3.0.0)
project(expr VERSION 3.0.3)
include(cmake/CPM.cmake)
configure_file(src/config.h.in config.h)
set(CMAKE_CXX_STANDARD 20)
Expand All @@ -41,8 +41,9 @@ CPMAddPackage("gh:sillydan1/[email protected]")

if(ENABLE_Z3)
include(cmake/Z3.cmake)
get_z3_zip_file(z3-4.11.2)
CPMAddPackage(NAME z3 VERSION z3-4.11.2 URL ${z3vstr})
set(Z3_VERSION_NUMBER z3-4.12.2)
get_z3_zip_file(${Z3_VERSION_NUMBER})
CPMAddPackage(NAME z3 VERSION ${Z3_VERSION_NUMBER} URL ${z3vstr})
endif()

set(${PROJECT_NAME}_BUILD_DIR ${CMAKE_CURRENT_BINARY_DIR} CACHE STRING "expr_BUILD_DIR" FORCE)
Expand Down
2 changes: 1 addition & 1 deletion cmake/CPM.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(CPM_DOWNLOAD_VERSION 0.38.0)
set(CPM_DOWNLOAD_VERSION 0.38.5)

if(CPM_SOURCE_CACHE)
# Expand relative path. This is important if the provided path contains a tilde (~)
Expand Down
1 change: 1 addition & 0 deletions src/operations/divide.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
*/
#include "operations/divide.h"
#include "operations/util.h"
#include <cstdint>
#include <sstream>
using namespace expr;

Expand Down

0 comments on commit 64e4e37

Please sign in to comment.