]> git.ipfire.org Git - thirdparty/libsolv.git/commitdiff
Add changes, bump version to 0.7.0 0.7.0
authorMichael Schroeder <mls@suse.de>
Wed, 24 Oct 2018 08:51:19 +0000 (10:51 +0200)
committerMichael Schroeder <mls@suse.de>
Wed, 24 Oct 2018 08:51:19 +0000 (10:51 +0200)
NEWS
VERSION.cmake
package/libsolv.changes

diff --git a/NEWS b/NEWS
index abb211f87e06dc642a3aa025387e4c71485ea3d6..16b79a8870ba0f91437fa0b2b195f28656cba336 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,24 @@
 This file contains the major changes between
 libsolv versions:
 
+Version 0.7.0
+- soname bump to "1"
+- incompatible API changes:
+  * bindings: Selection.flags is now an attribute
+  * repodata_lookup_num now works like the other lookup_num functions
+- new functions:
+  * selection_make_matchsolvable
+  * selection_make_matchsolvablelist
+  * pool_whatmatchessolvable
+  * repodata_search_arrayelement
+  * repodata_lookup_kv_uninternalized
+  * repodata_search_uninternalized
+  * repodata_translate_dir
+- new repowriter interface to write solv files allowing better
+  control over what gets written
+- support for filtered file lists with a custom filter
+- dropped support of (since a long time unused) REPOKEY_TYPE_U32
+
 Version 0.6.35
 - new configuration options:
   * ENABLE_ZSTD_COMPRESSION: support zstd compression
index 991c920ebda3d71cd9a2cb0787f98691c4e0ac2f..6ed2c6ffa6f244cdf4d1bc9eca998cbbb30b209a 100644 (file)
 #    set COMPATMINOR to MINOR. (binary incompatible change)
 #
 
-SET(LIBSOLV_SOVERSION "0")
-SET(LIBSOLVEXT_SOVERSION "0")
+SET(LIBSOLV_SOVERSION "1")
+SET(LIBSOLVEXT_SOVERSION "1")
 
 SET(LIBSOLV_MAJOR "0")
-SET(LIBSOLV_MINOR "6")
-SET(LIBSOLV_PATCH "35")
+SET(LIBSOLV_MINOR "7")
+SET(LIBSOLV_PATCH "0")
 
index 430e479bb693e100f9e046f771d66140f59b7553..6146e9936aee7e5a9a39e23ac527d95984ff9e49 100644 (file)
@@ -1,3 +1,12 @@
+-------------------------------------------------------------------
+Wed Oct 24 10:48:56 CEST 2018 - mls@suse.de
+
+- new repowriter interface
+- new selection_make_matchsolvable function
+- dropped support of REPOKEY_TYPE_U32
+- bindings: Selection.flags is now an attribute
+- bump version to 0.7.0
+
 -------------------------------------------------------------------
 Thu Aug  9 17:09:41 CEST 2018 - mls@suse.de