|
1 | 1 | # Changes by Version
|
2 | 2 |
|
3 |
| -## [v0.9.1-SNAPSHOT](https://github.com/libj/util/compare/d593a84124808733f13036e96f551e2fb8cf6088..HEAD) |
| 3 | +## [v0.9.2-SNAPSHOT](https://github.com/libj/util/compare/e21ce2f6212dd52e9dbaf133c4226e7d859a2dac..HEAD) |
| 4 | + |
| 5 | +## [v0.9.1](https://github.com/libj/util/compare/d593a84124808733f13036e96f551e2fb8cf6088..e21ce2f6212dd52e9dbaf133c4226e7d859a2dac) (2024-02-27) |
| 6 | +* #53 Remove `CRC32` in favor of `java.util.zip.CRC32` |
| 7 | +* #52 Transition to JUnit 5 |
| 8 | +* #51 Add `UnmodifiableCompositeCollection` and `UnmodifiableCompositeSet` |
| 9 | +* #50 Implement `SortedSetArrayList` |
| 10 | +* #49 Implement `Comparators.HASHCODE_COMPARATOR` and `Comparators.IDENTITY_HASHCODE_COMPARATOR` |
| 11 | +* #48 Implement `Dates.currentTimeMins()` |
4 | 12 |
|
5 | 13 | ## [v0.9.0](https://github.com/libj/util/compare/d8bc651739ee7c7a945c8ffad2a1dc6c6c0af904..d593a84124808733f13036e96f551e2fb8cf6088) (2023-09-20)
|
6 |
| -* #47 Implement DiscreteTopology |
| 14 | +* #47 Implement `DiscreteTopology` |
7 | 15 | * #46 Support boolean in primitive collections
|
8 |
| -* #45 Add Dates.MIN_VALUE and Dates.MAX_VALUE |
9 |
| -* #43 Add ObjBi<X>Predicate |
10 |
| -* #42 Implement Unmodifiable* alternatives to Collections.unmodifiable* |
11 |
| -* #41 Add UnsynchronizedGZIPOutputStream |
12 |
| -* #40 Add DelegateOutputStream and ObservableOutputStream |
13 |
| -* #39 Implement Dates.durationToString() and Dates.stringToDuration() |
14 |
| -* #38 Implement MultiMap |
15 |
| -* #37 StringPaths.canonicalize(...) mishandles '^../../' |
16 |
| -* #36 Implement ArrayUtil.dedupe(...) and CollectionUtil.dedupe(...) |
17 |
| -* #35 Externalize RetryOn as FunctionalInterface in RetryPolicy.run(...) |
18 |
| -* #34 Implement Shutdownable and Shutdownables |
19 |
| -* #33 Implement ExecutorServices.interruptAfterTimeout(...) |
20 |
| -* #32 Implement ExecutorServices.invokeAll(...) |
21 |
| -* #31 Support RetryPolicy.run(Runnable) and RetryPolicy.run(Callable) |
22 |
| -* #30 RetryFailureException.addSuppressed for all unique exceptions in Retry |
23 |
| -* #29 Implement fast CRC32 and CRC64 |
24 |
| -* #28 ISO_8601 and ISO_1123 in SimpleDateFormats |
25 |
| -* #27 Support override of equals(Object,Object) test |
26 |
| -* #26 Implement Zip enum |
27 |
| -* #25 Implement ArrayUtil.shift(...) |
28 |
| -* #24 Add ArrayUtil.subArray(...) overloads |
29 |
| -* #22 Add BiObj<X>Function and BiObjBi<X>Function templates |
30 |
| -* #21 Implement Functions utility with and(Function...) and or(Function...) |
31 |
| -* #20 Make RetryFailureException a checked exception |
32 |
| -* #19 Implement ConcurrentNullHashMap |
| 16 | +* #45 Add `Dates.MIN_VALUE` and `Dates.MAX_VALUE` |
| 17 | +* #43 Add `ObjBi<X>Predicate` |
| 18 | +* #42 Implement `Unmodifiable*` alternatives to `Collections.unmodifiable*` |
| 19 | +* #41 Add `UnsynchronizedGZIPOutputStream` |
| 20 | +* #40 Add `DelegateOutputStream` and `ObservableOutputStream` |
| 21 | +* #39 Implement `Dates.durationToString()` and `Dates.stringToDuration()` |
| 22 | +* #38 Implement `MultiMap` |
| 23 | +* #37 `StringPaths.canonicalize(...)` mishandles '^../../' |
| 24 | +* #36 Implement `ArrayUtil.dedupe(...)` and `CollectionUtil.dedupe(...)` |
| 25 | +* #35 Externalize `RetryOn` as `FunctionalInterface` in `RetryPolicy.run(...)` |
| 26 | +* #34 Implement `Shutdownable` and `Shutdownables` |
| 27 | +* #33 Implement `ExecutorServices.interruptAfterTimeout(...)` |
| 28 | +* #32 Implement `ExecutorServices.invokeAll(...)` |
| 29 | +* #31 Support `RetryPolicy.run(Runnable)` and `RetryPolicy.run(Callable)` |
| 30 | +* #30 `RetryFailureException.addSuppressed` for all unique exceptions in `Retry` |
| 31 | +* #29 Implement fast `CRC32` and `CRC64` |
| 32 | +* #28 `ISO_8601` and `ISO_1123` in `SimpleDateFormats` |
| 33 | +* #27 Support override of `equals(Object,Object)` test |
| 34 | +* #26 Implement `Zip` enum |
| 35 | +* #25 Implement `ArrayUtil.shift(...)` |
| 36 | +* #24 Add `ArrayUtil.subArray(...)` overloads |
| 37 | +* #22 Add `BiObj<X>Function` and `BiObjBi<X>Function` templates |
| 38 | +* #21 Implement `Functions` utility with `and(Function...)` and `or(Function...)` |
| 39 | +* #20 Make `RetryFailureException` a checked exception |
| 40 | +* #19 Implement `ConcurrentNullHashMap` |
33 | 41 | * #18 Transition to GitHub Actions
|
34 |
| -* #17 StringPaths.getParent(path) should return null in case of bare scheme |
35 |
| -* #16 Add Iterators.toEnumeration() |
| 42 | +* #17 `StringPaths.getParent(path)` should return null in case of bare scheme |
| 43 | +* #16 Add `Iterators.toEnumeration()` |
36 | 44 |
|
37 | 45 | ## [v0.8.1](https://github.com/libj/util/compare/a806523104ea3762033fc1a0de12daf9176ee5d0..d8bc651739ee7c7a945c8ffad2a1dc6c6c0af904) (2020-05-23)
|
38 | 46 | * Add template generated rules for classes in `org.libj.util.function` and `org.libj.util.primitive` packages.
|
|
0 commit comments