about summary refs log tree commit diff
path: root/src/c-rbtree/NEWS.md
blob: f3829b7d30f45f3a4e27a4c5c0eba512ca2675cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# c-rbtree - Intrusive Red-Black Tree Collection

## CHANGES WITH 3.2.0:

        * Use new c-stdaux variables to allow dynamic-linking and fix
          problems with pkg-config and variables including dashes.

        * Add hawmoth/sphinx based documentation.

        * Adjust to the new c-util CI workflows. This simplifies the entire
          CI system significantly.

        Contributions from: David Rheinsberg

        - Dußlingen, 2023-12-12

## CHANGES WITH 3.1.0:

        * Add 'ptrace' build option to enable running tests using 'ptrace'
          to verify extended execution properties. This option should not
          be used in setups where 'ptrace' cannot be employed (like running
          under gdb or valgrind). This option only affects the test-suite.

        * meson-0.60.0 is now the minimum required meson version.

        Contributions from: David Rheinsberg, Evgeny Vereshchagin

        - Brno, 2022-06-22

## CHANGES WITH 3:

        * Add more helpers. Add both a collection of iteratiors and helpers
          for initializing a tree and checking if a tree is empty, without
          explicitly accessing the data structure.

        Contributions from: David Herrmann

        - Berlin, 2017-08-13

## CHANGES WITH 2:

        * Relicense as ASL-2.0 to make c-rbtree useful for more projects. All
          code is now fully available under the ASL-2.0. Nothing is covered by
          the LGPL, anymore.

        * Switch build-system from Autotools to Meson. This simplifies the code
          base significantly. The Meson Build System is now used by many other
          projects, including GStreamer, Weston, and several Gnome packages.
          See http://mesonbuild.com/ for more information.

        Contributions from: David Herrmann

        - Berlin, 2016-12-14

## CHANGES WITH 1:

        * Initial release of c-rbtree.

        * This projects provides an RB-Tree API, that is fully implemented in
          ISO-C11 and has no external dependencies. Furthermore, tree
          traversal, memory allocations, and key comparisons are completely
          controlled by the API user. The implementation only provides the
          RB-Tree specific rebalancing and coloring.

        Contributions from: David Herrmann, Kay Sievers, Tom Gundersen

        - Berlin, 2016-08-31