Skip to content

Commit

Permalink
Update changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
topilski committed May 23, 2018
1 parent dc061b1 commit 8273cdd
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
1.17.5 /
1.17.5 / May 23, 2018
[Alexandr Topilski]
- [LevelDB] Update sources to version 1.20
- [RocksDB] Update sources to version 5.13.0
- Update QScintilla to version 2.10.4
- Update libssh2 (ED25519 Key Support)

1.17.4 / April 20, 2018
[Alexandr Topilski]
Expand Down
6 changes: 5 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.6.3) # OPENSSL_USE_STATIC_LIBS

SET(BRANDING_PROJECT_NAME "FastoNoSQL" CACHE STRING "Branding for ${BRANDING_PROJECT_NAME}") #default
SET(BRANDING_PROJECT_VERSION "1.17.5.0" CACHE STRING "Branding version for ${BRANDING_PROJECT_NAME}") #default
SET(BRANDING_PROJECT_BUILD_TYPE_VERSION "alfa" CACHE STRING "Build version type for ${BRANDING_PROJECT_NAME}") #default
SET(BRANDING_PROJECT_BUILD_TYPE_VERSION "release" CACHE STRING "Build version type for ${BRANDING_PROJECT_NAME}") #default
#possible variables: alfa, beta, rc, release

SET(BRANDING_PROJECT_DOMAIN "https://www.fastonosql.com" CACHE STRING "Branding domain url for ${BRANDING_PROJECT_NAME}") #default
Expand Down Expand Up @@ -515,3 +515,7 @@ ENDIF(CPACK_SUPPORT)
IF(DEVELOPER_GENERATE_DOCS)
CREATE_DOCS(${PROJECT_NAME_LOWERCASE} ${CMAKE_SOURCE_DIR}/docs/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)
ENDIF(DEVELOPER_GENERATE_DOCS)

IF(NOT EXISTS ${CMAKE_SOURCE_DIR}/.git/hooks/pre-commit)
EXECUTE_PROCESS(COMMAND ${CMAKE_SOURCE_DIR}/scripts/create_pre_commit_hook.sh)
ENDIF(NOT EXISTS ${CMAKE_SOURCE_DIR}/.git/hooks/pre-commit)
3 changes: 2 additions & 1 deletion FASTOREDIS_CHANELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
1.16.5 /
1.16.5 / May 23, 2018
[Alexandr Topilski]
- Update QScintilla to version 2.10.4
- Update libssh2 (ED25519 Key Support)

1.16.4 / April 20, 2018
[Alexandr Topilski]
Expand Down
10 changes: 5 additions & 5 deletions build/build_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def build_openssl(self, prefix_path):
def build_libssh2(self, cmake_line, prefix_path, make_install):
abs_dir_path = self.build_dir_path_
try:
cloned_dir = utils.git_clone('https://github.com/fastogt/libssh2.git', abs_dir_path)
cloned_dir = utils.git_clone('https://github.com/topilski/libssh2.git', abs_dir_path)
os.chdir(cloned_dir)

os.mkdir('build_cmake_release')
Expand Down Expand Up @@ -355,21 +355,21 @@ def build(self, bs):
# abs_dir_path = self.build_dir_path_

self.build_snappy(cmake_line, make_install)
self.build_openssl(prefix_path)
self.build_openssl(prefix_path)#
self.build_libssh2(cmake_line, prefix_path, make_install)
self.build_jsonc(prefix_path)
self.build_qscintilla(cmake_line, make_install)
self.build_common(cmake_line, make_install)

# databases libs builds
self.build_hiredis(prefix_path)
self.build_libmemcached(prefix_path)
self.build_libmemcached(prefix_path) #
self.build_unqlite(cmake_line, make_install)
self.build_lmdb(prefix_path)
self.build_leveldb(cmake_line, make_install)
self.build_rocksdb(cmake_line, make_install)
self.build_upscaledb(prefix_path)
self.build_forestdb(cmake_line, make_install)
self.build_upscaledb(prefix_path) #
self.build_forestdb(cmake_line, make_install) #


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion cmake
Submodule cmake updated 1 files
+8 −5 config.cmake

0 comments on commit 8273cdd

Please sign in to comment.