Skip to content

Commit 9f5b809

Browse files
committed
0.16.1
1 parent cb2569d commit 9f5b809

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

.github/workflows/clojure.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
# Supported Java versions: LTS releases and latest
15-
jdk: [11, 17, 21]
15+
jdk: [8, 11, 17, 21]
1616
clojure: [11]
1717

1818
name: Clojure ${{ matrix.clojure }} (Java ${{ matrix.jdk }})

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ We use [Break Versioning][breakver]. The version numbers follow a `<major>.<mino
1414

1515
Malli is in well matured [alpha](README.md#alpha).
1616

17+
## 0.16.1 (2024-04-30)
18+
19+
* Enabled Java8 tests back, no need to limit the version.
20+
1721
## 0.16.0 (2024-04-20)
1822

1923
* **BREAKING**: minimum Java-version is now Java11

README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ So, we decided to spin out our own library, which would do all the things we fee
6868

6969
[![Clojars Project](http://clojars.org/metosin/malli/latest-version.svg)](http://clojars.org/metosin/malli)
7070

71-
Malli requires Java 11 and Clojure 1.11.
71+
Malli requires Clojure 1.11.
72+
73+
Malli is tested with the LTS releases Java 8, 11, 17 and 21.
7274

7375
## Quickstart
7476

@@ -3424,10 +3426,6 @@ The API layers and stability:
34243426
* **experimental**: stuff in `malli.experimental` ns, code might change be moved under a separate support library, but you can always copy the old implementation to your project, so ok to use.
34253427
* **private API**: private vars and `malli.impl` namespaces, all bets are off.
34263428

3427-
## Supported Java versions
3428-
3429-
Malli aims to support the LTS releases Java 8 and 11 and the latest Java release, Java 15.
3430-
34313429
# Development
34323430

34333431
Malli is open for contributions. Before contributing with a PR, please open an issue for it.

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>metosin</groupId>
55
<artifactId>malli</artifactId>
6-
<version>0.16.0</version>
6+
<version>0.16.1</version>
77
<name>malli</name>
88
<licenses>
99
<license>
@@ -15,7 +15,7 @@
1515
<url>https://github.com/metosin/malli</url>
1616
<connection>scm:git:git://github.com/metosin/malli.git</connection>
1717
<developerConnection>scm:git:ssh://[email protected]/metosin/malli.git</developerConnection>
18-
<tag>0.16.0</tag>
18+
<tag>0.16.1</tag>
1919
</scm>
2020
<dependencies>
2121
<dependency>

0 commit comments

Comments
 (0)