Skip to content

Commit 3ba2122

Browse files
committed
Release v0.9.1 [skip ci]
1 parent e21ce2f commit 3ba2122

File tree

2 files changed

+43
-35
lines changed

2 files changed

+43
-35
lines changed

CHANGELOG.md

+37-29
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,46 @@
11
# Changes by Version
22

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()`
412

513
## [v0.9.0](https://github.com/libj/util/compare/d8bc651739ee7c7a945c8ffad2a1dc6c6c0af904..d593a84124808733f13036e96f551e2fb8cf6088) (2023-09-20)
6-
* #47 Implement DiscreteTopology
14+
* #47 Implement `DiscreteTopology`
715
* #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`
3341
* #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()`
3644

3745
## [v0.8.1](https://github.com/libj/util/compare/a806523104ea3762033fc1a0de12daf9176ee5d0..d8bc651739ee7c7a945c8ffad2a1dc6c6c0af904) (2020-05-23)
3846
* Add template generated rules for classes in `org.libj.util.function` and `org.libj.util.primitive` packages.

pom.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
<parent>
2323
<groupId>org.libj</groupId>
2424
<artifactId>libj</artifactId>
25-
<version>0.9.9-SNAPSHOT</version>
25+
<version>0.9.9</version>
2626
</parent>
2727
<artifactId>util</artifactId>
28-
<version>0.9.1-SNAPSHOT</version>
28+
<version>0.9.1</version>
2929
<name>LibJ Util</name>
3030
<description>
3131
Supplementary utilities for classes that belong to java.util, or are considered essential as to justify existence in java.util.
@@ -35,7 +35,7 @@
3535
<plugin>
3636
<groupId>org.openjax.codegen</groupId>
3737
<artifactId>codegen-maven-plugin</artifactId>
38-
<version>0.3.0-SNAPSHOT</version>
38+
<version>0.3.0</version>
3939
<executions>
4040
<execution>
4141
<id>characterClasses</id>
@@ -379,21 +379,21 @@
379379
<dependency>
380380
<groupId>org.libj</groupId>
381381
<artifactId>lang</artifactId>
382-
<version>0.8.1-SNAPSHOT</version>
382+
<version>0.8.1</version>
383383
<type>test-jar</type>
384384
<scope>test</scope>
385385
</dependency>
386386
<dependency>
387387
<groupId>org.libj</groupId>
388388
<artifactId>logging</artifactId>
389-
<version>0.5.0-SNAPSHOT</version>
389+
<version>0.5.0</version>
390390
<scope>test</scope>
391391
</dependency>
392392

393393
<dependency>
394394
<groupId>org.openjax.codegen</groupId>
395395
<artifactId>radixtree</artifactId>
396-
<version>0.3.0-SNAPSHOT</version>
396+
<version>0.3.0</version>
397397
</dependency>
398398

399399
<dependency>

0 commit comments

Comments
 (0)