Bump version to 0.1.1

This commit is contained in:
Christian Dywan 2008-11-30 01:48:04 +01:00
parent 5f149946d6
commit c2c031e041
3 changed files with 15 additions and 2 deletions

View file

@ -1,5 +1,18 @@
This file is licensed under the terms of the expat license, see the file EXPAT. 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: v0.1.0:
+ Allow for hiding the menubar + Allow for hiding the menubar
+ Make the navigationbar customizable + Make the navigationbar customizable

View file

@ -1,6 +1,6 @@
# This file is licensed under the terms of the expat license, see the file EXPAT. # This file is licensed under the terms of the expat license, see the file EXPAT.
# Register ourselves to autoconf # 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_SRCDIR([midori/midori-stock.h])
AC_CONFIG_HEADER([config.h]) AC_CONFIG_HEADER([config.h])

View file

@ -11,7 +11,7 @@ import UnitTest
major = 0 major = 0
minor = 1 minor = 1
micro = 0 micro = 1
APPNAME = 'midori' APPNAME = 'midori'
VERSION = str (major) + '.' + str (minor) + '.' + str (micro) VERSION = str (major) + '.' + str (minor) + '.' + str (micro)