From c2c031e041ff51072393b585a210851d5a355884 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Sun, 30 Nov 2008 01:48:04 +0100 Subject: [PATCH] Bump version to 0.1.1 --- ChangeLog | 13 +++++++++++++ configure.in | 2 +- wscript | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3a280d2a..add8b40c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,18 @@ This file is licensed under the terms of the expat license, see the file EXPAT. +v0.1.1: + + Reimplement page holder as an extension + + Introduce a C extension interface + + Introduce unit tests for automated testing + + Implement history based location completion + + Support the Web Inspector in new WebKit versions + + Bookmarkbar properly reflects changes + + Improve overall OS X integration + + Add a Text Editor Preference + + Add a Compat sidebar Preference + + Add an Open external pages in Preference + + Implement source view and cached favicons with libsoup + v0.1.0: + Allow for hiding the menubar + Make the navigationbar customizable diff --git a/configure.in b/configure.in index 931fb769..9c4a7605 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ # This file is licensed under the terms of the expat license, see the file EXPAT. # Register ourselves to autoconf -AC_INIT([midori], [0.1.0], [http://www.twotoasts.de/bugs]) +AC_INIT([midori], [0.1.1], [http://www.twotoasts.de/bugs]) AC_CONFIG_SRCDIR([midori/midori-stock.h]) AC_CONFIG_HEADER([config.h]) diff --git a/wscript b/wscript index 4cc24f6f..c15fcf6c 100644 --- a/wscript +++ b/wscript @@ -11,7 +11,7 @@ import UnitTest major = 0 minor = 1 -micro = 0 +micro = 1 APPNAME = 'midori' VERSION = str (major) + '.' + str (minor) + '.' + str (micro) -- 2.39.5