summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2007-10-16 00:05:07 +0100
committerRichard Hughes <richard@hughsie.com>2007-10-16 00:05:07 +0100
commitbd4e84c285ce9121d15816dee7cdda366a629ef8 (patch)
tree328aba319edc2d098c3320c06081f5138ab6882f
parente079328043cfd3599931cb38eb3fd0d6ec62ae14 (diff)
update for releasePACKAGEKIT_0_1_0
-rw-r--r--NEWS21
-rw-r--r--configure.ac9
2 files changed, 28 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 8b1378917..5d622ac8d 100644
--- a/NEWS
+++ b/NEWS
@@ -1 +1,22 @@
+=============
+Version 0.1.0
+=============
+
+- The first public release of PackageKit!
+- New gobject client library for session software to easily talk to PackageKit.
+- Asynchronous API that does not block.
+- Daemon that can queue and manage multiple simultaneous blocking and
+ non-blocking transactions
+- Client applications (pkcon and pkmon) that interact with PackageKit on the
+ command line without any GUI dependencies
+- Many compiled and scripted backends: conary, yum, apt, box, alpm
+- Comprehensive docbook documentation
+- Daemon configuration parameters in etc
+- Module level unit tests as standard
+- Python backend and frontend helper libraries
+- Transaction logging and capability exports for GUI tools
+- HAL locking supported for not-to-be interrupted phases of the transaction
+- NetworkManager integration for network state (other network detection
+ stacks can also be used in the future)
+- PolicyKit integration for fine-grained permission control.
diff --git a/configure.ac b/configure.ac
index 833c74871..4a4661eb0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
AC_PREREQ(2.52)
-AC_INIT(PackageKit, 0.0.1)
+AC_INIT(PackageKit, 0.1.0)
AC_CONFIG_SRCDIR(src)
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
AM_CONFIG_HEADER(config.h)
@@ -9,7 +9,12 @@ AM_CONFIG_HEADER(config.h)
#
# See http://sources.redhat.com/autobook/autobook/autobook_91.html#SEC91 for details
#
-LT_CURRENT=1
+# increment;
+# CURRENT If the API or ABI interface has changed (reset REVISION to 0)
+# REVISION If the API and ABI remains the same, but bugs are fixed.
+# AGE If libpackagekit can be linked into executables which can be
+# built with previous versions of this library. Don't use.
+LT_CURRENT=2
LT_REVISION=0
LT_AGE=0
AC_SUBST(LT_CURRENT)