summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Wilmet <swilmet@gnome.org>2015-09-20 15:37:32 +0200
committerSébastien Wilmet <swilmet@gnome.org>2015-09-20 15:37:32 +0200
commitba4b7757cb0eb8f07964a525f811b99703aedf3d (patch)
treedb20b25a8daa41a90e638627996435d45ec4aae1
parent021dcc4fd189b4e6539b9e72cd96314e06173c5f (diff)
downloadgtksourceview-ba4b7757cb0eb8f07964a525f811b99703aedf3d.tar.gz
Release 3.18.03.18.0
-rw-r--r--NEWS5
-rw-r--r--README6
-rw-r--r--configure.ac8
3 files changed, 12 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index 0c9c0afa..22a2f18b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+News in 3.18.0
+--------------
+* Minor improvement to the CSS syntax highlighting
+* Translation updates
+
News in 3.17.7
--------------
* Handle creating pixbufs for HiDPI resolutions
diff --git a/README b/README
index 38cf553e..31ba1160 100644
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
General Information
===================
-This is version 3.17.8 of GtkSourceView.
+This is version 3.18.0 of GtkSourceView.
GtkSourceView is a text widget that extends the standard GTK+ text widget
GtkTextView.
@@ -33,8 +33,8 @@ GtkSourceView requires GLib >= 2.44, GTK+ >= 3.16 and libxml2 >= 2.6.
Simple install procedure:
- % tar Jxf gtksourceview-3.17.8.tar.xz # unpack the sources
- % cd gtksourceview-3.17.8 # change to the toplevel directory
+ % tar Jxf gtksourceview-3.18.0.tar.xz # unpack the sources
+ % cd gtksourceview-3.18.0 # change to the toplevel directory
% ./configure # run the `configure' script
% make # build gtksourceview
[ Become root if necessary ]
diff --git a/configure.ac b/configure.ac
index 6118d965..9df247a7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,8 +3,8 @@ dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.64)
m4_define(gtksourceview_major_version, 3)
-m4_define(gtksourceview_minor_version, 17)
-m4_define(gtksourceview_micro_version, 8)
+m4_define(gtksourceview_minor_version, 18)
+m4_define(gtksourceview_micro_version, 0)
m4_define(gtksourceview_version, gtksourceview_major_version.gtksourceview_minor_version.gtksourceview_micro_version)
AC_INIT([gtksourceview],
@@ -30,9 +30,9 @@ AX_IS_RELEASE([git-directory])
# 4. If any exported functions or data have been removed since the last
# public release, set AGE to 0.
-GSV_LT_CURRENT=5
+GSV_LT_CURRENT=6
GSV_LT_REVISION=0
-GSV_LT_AGE=4
+GSV_LT_AGE=5
GSV_LT_VERSION="$GSV_LT_CURRENT:$GSV_LT_REVISION:$GSV_LT_AGE"
AC_SUBST(GSV_LT_VERSION)