Skip to content

Commit

Permalink
Updated for 2.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
akallabeth committed Apr 25, 2022
1 parent 32b8db3 commit 40ee5d3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ if ($ENV{BUILD_NUMBER})
endif()
set(WITH_LIBRARY_VERSIONING "ON")

set(RAW_VERSION_STRING "2.6.1")
set(RAW_VERSION_STRING "2.7.0")
if(EXISTS "${CMAKE_SOURCE_DIR}/.source_tag")
file(READ ${CMAKE_SOURCE_DIR}/.source_tag RAW_VERSION_STRING)
elseif(USE_VERSION_FROM_GIT_TAG)
Expand Down
4 changes: 2 additions & 2 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 2022-XX-YY Version 2.X.Y
# 2022-04-25 Version 2.7.0

Noteworthy changes:
* Backported OpenSSL3 gateway support (#7822)
Expand All @@ -16,7 +16,7 @@ Fixed issues:
Important notes:

For a complete and detailed change log since the last release run:
git log 2.6.1..2.X.Y
git log 2.6.1..2.7.0

# 2022-03-07 Version 2.6.1

Expand Down
2 changes: 1 addition & 1 deletion client/Android/Studio/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def getVersionName = { ->

ext {
versionName = properties.get('VERSION_NAME', getVersionName())
versionCode = properties.get('VERSION_CODE', 28)
versionCode = properties.get('VERSION_CODE', 29)
compileApi = properties.get('COMPILE_API', 31)
targetApi = properties.get('TARGET_API', 31)
minApi = properties.get('MIN_API', 23)
Expand Down
2 changes: 1 addition & 1 deletion client/Android/android_freerdp.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
#define TAG CLIENT_TAG("android")

/* Defines the JNI version supported by this library. */
#define FREERDP_JNI_VERSION "2.6.1"
#define FREERDP_JNI_VERSION "2.7.0"

static void android_OnChannelConnectedEventHandler(void* context, ChannelConnectedEventArgs* e)
{
Expand Down
2 changes: 1 addition & 1 deletion winpr/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ if (NOT WIN32)
endif()

# Soname versioning
set(RAW_VERSION_STRING "2.6.1")
set(RAW_VERSION_STRING "2.7.0")
if(EXISTS "${CMAKE_SOURCE_DIR}/.source_tag")
file(READ ${CMAKE_SOURCE_DIR}/.source_tag RAW_VERSION_STRING)
elseif(USE_VERSION_FROM_GIT_TAG)
Expand Down

0 comments on commit 40ee5d3

Please sign in to comment.