Skip to content

Commit 64e4e37

Browse files
authored
Merge pull request #18 from sillydan1/dev
Release v3.0.3
2 parents 9017577 + 01a5544 commit 64e4e37

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CMakeLists.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
# SOFTWARE.
2222
cmake_minimum_required(VERSION 3.18)
23-
project(expr VERSION 3.0.0)
23+
project(expr VERSION 3.0.3)
2424
include(cmake/CPM.cmake)
2525
configure_file(src/config.h.in config.h)
2626
set(CMAKE_CXX_STANDARD 20)
@@ -41,8 +41,9 @@ CPMAddPackage("gh:sillydan1/[email protected]")
4141

4242
if(ENABLE_Z3)
4343
include(cmake/Z3.cmake)
44-
get_z3_zip_file(z3-4.11.2)
45-
CPMAddPackage(NAME z3 VERSION z3-4.11.2 URL ${z3vstr})
44+
set(Z3_VERSION_NUMBER z3-4.12.2)
45+
get_z3_zip_file(${Z3_VERSION_NUMBER})
46+
CPMAddPackage(NAME z3 VERSION ${Z3_VERSION_NUMBER} URL ${z3vstr})
4647
endif()
4748

4849
set(${PROJECT_NAME}_BUILD_DIR ${CMAKE_CURRENT_BINARY_DIR} CACHE STRING "expr_BUILD_DIR" FORCE)

cmake/CPM.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set(CPM_DOWNLOAD_VERSION 0.38.0)
1+
set(CPM_DOWNLOAD_VERSION 0.38.5)
22

33
if(CPM_SOURCE_CACHE)
44
# Expand relative path. This is important if the provided path contains a tilde (~)

src/operations/divide.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
*/
2323
#include "operations/divide.h"
2424
#include "operations/util.h"
25+
#include <cstdint>
2526
#include <sstream>
2627
using namespace expr;
2728

0 commit comments

Comments
 (0)