Title: [221368] trunk
Revision
221368
Author
carlo...@webkit.org
Date
2017-08-30 04:07:10 -0700 (Wed, 30 Aug 2017)

Log Message

Unreviewed. Fix versions numbers after r221136.

We normally use .0 in trunk after branching, and bump to .1 when making the first unstable release. We also need
to bump the library version.

* Source/cmake/OptionsGTK.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (221367 => 221368)


--- trunk/ChangeLog	2017-08-30 10:24:05 UTC (rev 221367)
+++ trunk/ChangeLog	2017-08-30 11:07:10 UTC (rev 221368)
@@ -1,3 +1,12 @@
+2017-08-30  Carlos Garcia Campos  <cgar...@igalia.com>
+
+        Unreviewed. Fix versions numbers after r221136.
+
+        We normally use .0 in trunk after branching, and bump to .1 when making the first unstable release. We also need
+        to bump the library version.
+
+        * Source/cmake/OptionsGTK.cmake:
+
 2017-08-29  Don Olmstead  <don.olmst...@sony.com>
 
         [CMake] Use find_package for zlib

Modified: trunk/Source/cmake/OptionsGTK.cmake (221367 => 221368)


--- trunk/Source/cmake/OptionsGTK.cmake	2017-08-30 10:24:05 UTC (rev 221367)
+++ trunk/Source/cmake/OptionsGTK.cmake	2017-08-30 11:07:10 UTC (rev 221368)
@@ -2,7 +2,7 @@
 
 set(PROJECT_VERSION_MAJOR 2)
 set(PROJECT_VERSION_MINOR 19)
-set(PROJECT_VERSION_MICRO 1)
+set(PROJECT_VERSION_MICRO 0)
 set(PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_MICRO})
 set(WEBKITGTK_API_VERSION 4.0)
 
@@ -14,8 +14,8 @@
     set(${library_name}_VERSION_MICRO ${revision})
     set(${library_name}_VERSION ${${library_name}_VERSION_MAJOR}.${age}.${revision})
 endmacro()
-CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT2 60 1 23)
-CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(_javascript_CORE 24 5 6)
+CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT2 62 0 25)
+CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(_javascript_CORE 25 0 7)
 
 # These are shared variables, but we special case their definition so that we can use the
 # CMAKE_INSTALL_* variables that are populated by the GNUInstallDirs macro.
@@ -190,7 +190,7 @@
 add_definitions(-DBUILDING_GTK__=1)
 add_definitions(-DGETTEXT_PACKAGE="WebKit2GTK-${WEBKITGTK_API_VERSION}")
 add_definitions(-DDATA_DIR="${CMAKE_INSTALL_DATADIR}")
-add_definitions(-DUSER_AGENT_MAJOR_VERSION="604")
+add_definitions(-DUSER_AGENT_MAJOR_VERSION="605")
 add_definitions(-DUSER_AGENT_MINOR_VERSION="1")
 add_definitions(-DWEBKITGTK_API_VERSION_STRING="${WEBKITGTK_API_VERSION}")
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to