Skip to content
This repository was archived by the owner on Oct 14, 2023. It is now read-only.

Commit 4be96ea

Browse files
committed
chore(*): release version 3.4.0
1 parent d415718 commit 4be96ea

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

doc/changes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
master branch (aka work in progress branch)
1+
v3.4.0 (16 April 2018)
22
-------------
33

44
*Features*
@@ -135,7 +135,7 @@ master branch (aka work in progress branch)
135135

136136
* The `--profile` flag will now print cumulative profiling times at the end of execution
137137

138-
* do notation now uses the top-level, overloadable `bind` function instead of `has_bind.bind`,
138+
* do notation now uses the top-level, overloadable `bind` function instead of `has_bind.bind`,
139139
allowing binds with different type signatures
140140

141141
* Structures fields can now be defined with an implicitness infer annotation and parameters.

src/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ if ((${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} GREATER 3.1) OR (${CMAKE_MAJO
44
endif()
55
project(LEAN CXX C)
66
set(LEAN_VERSION_MAJOR 3)
7-
set(LEAN_VERSION_MINOR 3)
8-
set(LEAN_VERSION_PATCH 1)
9-
set(LEAN_VERSION_IS_RELEASE 0) # This number is 1 in the release revision, and 0 otherwise.
7+
set(LEAN_VERSION_MINOR 4)
8+
set(LEAN_VERSION_PATCH 0)
9+
set(LEAN_VERSION_IS_RELEASE 1) # This number is 1 in the release revision, and 0 otherwise.
1010
set(LEAN_SPECIAL_VERSION_DESC "" CACHE STRING "Additional version description like 'nightly-2018-03-11'")
1111
set(LEAN_VERSION_STRING "${LEAN_VERSION_MAJOR}.${LEAN_VERSION_MINOR}.${LEAN_VERSION_PATCH}")
1212
if (LEAN_SPECIAL_VERSION_DESC)

src/shell/CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,8 @@ FOREACH(T ${LEANFAILTESTS})
197197
ENDFOREACH(T)
198198

199199
# LEANPKG TESTS
200+
if(NOT (${LEAN_VERSION_IS_RELEASE} EQUAL "1"))
201+
# Remark: when LEAN_VERSION_IS_RELEASE is 1, one the leanpkg tests fail because the output contains extra information
200202
file(GLOB LEANPKGTESTS "${LEAN_SOURCE_DIR}/../tests/lean/leanpkg/*.sh")
201203
FOREACH(T ${LEANPKGTESTS})
202204
GET_FILENAME_COMPONENT(T_NAME ${T} NAME)
@@ -206,6 +208,7 @@ FOREACH(T ${LEANPKGTESTS})
206208
COMMAND bash "./test_single.sh" "${LEAN_SOURCE_DIR}/../bin/lean" ${T_NAME})
207209
endif()
208210
ENDFOREACH(T)
211+
endif()
209212

210213
# LEAN TESTS using --trust=0
211214
file(GLOB LEANT0TESTS "${LEAN_SOURCE_DIR}/../tests/lean/trust0/*.lean")

0 commit comments

Comments
 (0)