Skip to content

Commit

Permalink
update version number to 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
grzegorzmazur committed Feb 1, 2016
1 parent 90b57bb commit d854604
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ if (${CMAKE_SYSTEM_NAME} STREQUAL "Emscripten")
endif ()

set (YACAS_VERSION_MAJOR 1)
set (YACAS_VERSION_MINOR 3)
set (YACAS_VERSION_MICRO 6)
set (YACAS_VERSION_MINOR 4)
set (YACAS_VERSION_MICRO 0)

set (YACAS_VERSION ${YACAS_VERSION_MAJOR}.${YACAS_VERSION_MINOR}.${YACAS_VERSION_MICRO})

Expand Down Expand Up @@ -341,7 +341,7 @@ set_target_properties(libyacas_shared PROPERTIES OUTPUT_NAME "yacas" SOVERSION 1
#to generate yacas framework on macos:
if (APPLE)
add_library (libyacas_framework SHARED ${YACAS_LIB_SOURCES})
set_target_properties(libyacas_framework PROPERTIES OUTPUT_NAME "yacas" VERSION ${YACAS_VERSION} SOVERSION 1.0.0 FRAMEWORK ON)
set_target_properties(libyacas_framework PROPERTIES OUTPUT_NAME "yacas" VERSION ${YACAS_VERSION} SOVERSION 14.0.0 FRAMEWORK ON)
add_custom_command(TARGET libyacas_framework POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_directory ${PROJECT_SOURCE_DIR}/scripts $<TARGET_FILE_DIR:libyacas_framework>/Resources/scripts)
add_custom_command(TARGET libyacas_framework POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_directory ${PROJECT_BINARY_DIR}/scripts $<TARGET_FILE_DIR:libyacas_framework>/Resources/scripts)
add_custom_command(TARGET libyacas_framework POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_directory ${PROJECT_SOURCE_DIR}/include $<TARGET_FILE_DIR:libyacas_framework>/Headers)
Expand Down
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<description>
JavaYacas build file
</description>
<property name="version" value="1.3.6" />
<property name="version" value="1.4.0" />
<property name="main" value="net.sf.yacas.YacasConsole" />
<property name="src" location="JavaYacas" />
<property name="scripts" location="scripts" />
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Process this file with autoconf to produce a configure script.
AC_INIT(yacas, 1.3.6, yacas@googlegroups.com, , http://www.yacas.org/)
AC_INIT(yacas, 1.4.0, yacas@googlegroups.com, , http://www.yacas.org/)

AC_CONFIG_SRCDIR(src/yacasmain.cpp)

Expand Down
4 changes: 2 additions & 2 deletions new_docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@
# built documents.
#
# The short X.Y version.
version = '1.3.5'
version = '1.4'
# The full version, including alpha/beta/rc tags.
release = '1.3.5'
release = '1.4.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit d854604

Please sign in to comment.