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

Commit

Permalink
chore(*): release version 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leodemoura committed Apr 16, 2018
1 parent d415718 commit 4be96ea
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions doc/changes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
master branch (aka work in progress branch)
v3.4.0 (16 April 2018)
-------------

*Features*
Expand Down Expand Up @@ -135,7 +135,7 @@ master branch (aka work in progress branch)

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

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

* Structures fields can now be defined with an implicitness infer annotation and parameters.
Expand Down
6 changes: 3 additions & 3 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ if ((${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} GREATER 3.1) OR (${CMAKE_MAJO
endif()
project(LEAN CXX C)
set(LEAN_VERSION_MAJOR 3)
set(LEAN_VERSION_MINOR 3)
set(LEAN_VERSION_PATCH 1)
set(LEAN_VERSION_IS_RELEASE 0) # This number is 1 in the release revision, and 0 otherwise.
set(LEAN_VERSION_MINOR 4)
set(LEAN_VERSION_PATCH 0)
set(LEAN_VERSION_IS_RELEASE 1) # This number is 1 in the release revision, and 0 otherwise.
set(LEAN_SPECIAL_VERSION_DESC "" CACHE STRING "Additional version description like 'nightly-2018-03-11'")
set(LEAN_VERSION_STRING "${LEAN_VERSION_MAJOR}.${LEAN_VERSION_MINOR}.${LEAN_VERSION_PATCH}")
if (LEAN_SPECIAL_VERSION_DESC)
Expand Down
3 changes: 3 additions & 0 deletions src/shell/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,8 @@ FOREACH(T ${LEANFAILTESTS})
ENDFOREACH(T)

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

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

0 comments on commit 4be96ea

Please sign in to comment.