summaryrefslogtreecommitdiffstats
path: root/third_party/rust/id-arena/CHANGELOG.md
blob: 0f3ecde738cafd7be23b0b2776efc7614a6148f0 (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
# 2.2.1

Released 2019-02-15.

* Make sure our rayon parallel iterators are exported. Previously instances of
  them were returned by `pub` methods but the types themselves were not
  exported.

# 2.2.0

Released 2019-01-30.

* Add the `Arena::alloc_with_id` method. This is better than using
  `Arena::next_id` directly most of the time (but is also not *quite* as
  flexible). See [#9](https://github.com/fitzgen/id-arena/issues/9) and
  [#10](https://github.com/fitzgen/id-arena/pull/10).

--------------------------------------------------------------------------------

# 2.1.0

Released 2019-01-25.

* Added optional support for `rayon` parallel iteration. Enable the `rayon`
  Cargo feature to get access.

--------------------------------------------------------------------------------

# 2.0.1

Released 2019-01-09.

* Implemented `Ord` and `PartialOrd` for `Id<T>`.
* Added an `Arena::with_capacity` constructor.
* Added `Arena::next_id` to get the id that will be used for the next
  allocation.

--------------------------------------------------------------------------------

# 2.0.0

Released 2018-11-28.

* Introduces the `ArenaBehavior` trait, which allows one to customize identifier
  types and do things like implement space optimizations or use identifiers for
  many arenas at once.
* Implements `Clone`, `PartialEq` and `Eq` for arenas.

--------------------------------------------------------------------------------

# 1.0.2

Released 2018-11-25.

* `Id<T>` now implements `Send` and `Sync`
* The `PartialEq` implementation for `Id<T>` now correctly checks that two ids
  are for the same arena when checking equality.

--------------------------------------------------------------------------------

# 1.0.1

--------------------------------------------------------------------------------

# 1.0.0