Skip to content

Commit

Permalink
Remove "-rc" suffix from version
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Kamaev committed Nov 2, 2012
1 parent 42471c0 commit 4a2f626
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ include(cmake/OpenCVGenConfig.cmake)
# Summary:
# ----------------------------------------------------------------------------
status("")
status("General configuration for OpenCV ${OPENCV_VERSION}-rc =====================================")
status("General configuration for OpenCV ${OPENCV_VERSION} =====================================")
if(OPENCV_VCSVERSION)
status(" Version control:" ${OPENCV_VCSVERSION})
endif()
Expand Down
2 changes: 1 addition & 1 deletion modules/core/include/opencv2/core/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@

#define CVAUX_STR_EXP(__A) #__A
#define CVAUX_STR(__A) CVAUX_STR_EXP(__A)
#define CV_VERSION CVAUX_STR(CV_MAJOR_VERSION) "." CVAUX_STR(CV_MINOR_VERSION) "." CVAUX_STR(CV_SUBMINOR_VERSION) "-rc"
#define CV_VERSION CVAUX_STR(CV_MAJOR_VERSION) "." CVAUX_STR(CV_MINOR_VERSION) "." CVAUX_STR(CV_SUBMINOR_VERSION)

#endif

0 comments on commit 4a2f626

Please sign in to comment.