Skip to content

Commit

Permalink
release: version 1.0.0
Browse files Browse the repository at this point in the history
* change version strings/numbers to 1.0.0
* disable HTML_TIMESTAMP for doxygen
* don't build tests with make all

Signed-off-by: Matthias Kretz <[email protected]>
  • Loading branch information
mattkretz committed Nov 3, 2015
1 parent b5361f6 commit 6ffaf8d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ if(NOT ROOT_RELEASE)
include (CTest)
configure_file(${CMAKE_SOURCE_DIR}/CTestCustom.cmake ${CMAKE_BINARY_DIR}/CTestCustom.cmake COPYONLY)
if(BUILD_TESTING)
add_custom_target(build_tests ALL VERBATIM)
add_custom_target(build_tests VERBATIM)
add_subdirectory(tests)
endif(BUILD_TESTING)

Expand Down
2 changes: 1 addition & 1 deletion doc/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ PROJECT_NAME = "Vc"
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = 0.99.71-dev
PROJECT_NUMBER = 1.0.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer
Expand Down
4 changes: 2 additions & 2 deletions include/Vc/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef VC_VERSION_H_
#define VC_VERSION_H_

#define Vc_VERSION_STRING "0.99.71-dev"
#define Vc_VERSION_NUMBER 0x00638f
#define Vc_VERSION_STRING "1.0.0"
#define Vc_VERSION_NUMBER 0x010000
#define Vc_VERSION_CHECK(major, minor, patch) ((major << 16) | (minor << 8) | (patch << 1))
#define Vc_LIBRARY_ABI_VERSION 5

Expand Down

0 comments on commit 6ffaf8d

Please sign in to comment.