Skip to content

Commit 5e0a61c

Browse files
committed
chore(java): Release 0.20.2
Signed-off-by: Dmitry Dygalo <dmitry@dygalo.dev>
1 parent 2179596 commit 5e0a61c

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

bindings/java/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [0.20.2] - 2026-04-02
6+
57
### Added
68

79
- `CssInline.inline(String html, String css)` convenience overload for applying a CSS string to a full HTML document. [#693](https://github.com/Stranger6667/css-inline/issues/693)
@@ -105,7 +107,8 @@
105107

106108
- Initial public release
107109

108-
[Unreleased]: https://github.com/Stranger6667/css-inline/compare/java-v0.20.1...HEAD
110+
[Unreleased]: https://github.com/Stranger6667/css-inline/compare/java-v0.20.2...HEAD
111+
[0.20.2]: https://github.com/Stranger6667/css-inline/compare/java-v0.20.1...java-v0.20.2
109112
[0.20.1]: https://github.com/Stranger6667/css-inline/compare/java-v0.20.0...java-v0.20.1
110113
[0.20.0]: https://github.com/Stranger6667/css-inline/compare/java-v0.19.1...java-v0.20.0
111114
[0.19.1]: https://github.com/Stranger6667/css-inline/compare/java-v0.19.0...java-v0.19.1

bindings/java/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "css_inline"
3-
version = "0.20.1"
3+
version = "0.20.2"
44
edition = "2024"
55
authors = ["Dmitry Dygalo <dmitry@dygalo.dev>"]
66

bindings/java/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ repositories {
6464
}
6565
6666
dependencies {
67-
implementation 'org.css-inline:css-inline:0.20.1'
67+
implementation 'org.css-inline:css-inline:0.20.2'
6868
}
6969
```
7070

@@ -81,7 +81,7 @@ dependencies {
8181
<dependency>
8282
<groupId>org.css-inline</groupId>
8383
<artifactId>css-inline</artifactId>
84-
<version>0.20.1</version>
84+
<version>0.20.2</version>
8585
</dependency>
8686
</dependencies>
8787
```
@@ -273,7 +273,7 @@ and spaces between properties and values.
273273

274274
Here is the performance comparison:
275275

276-
| | Size | `css-inline 0.20.1` | `CSSBox 5.0.0` |
276+
| | Size | `css-inline 0.20.2` | `CSSBox 5.0.0` |
277277
|-------------|---------|---------------------|-------------------------|
278278
| Basic | 230 B | 7.22 µs | 53.33 µs (**7.38x**) |
279279
| Realistic-1 | 8.58 KB | 109.77 µs | 1.60 ms (**14.61x**) |

bindings/java/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group = 'org.css-inline'
8-
version = System.getenv('VERSION') ?: '0.20.1-SNAPSHOT'
8+
version = System.getenv('VERSION') ?: '0.20.2-SNAPSHOT'
99

1010
java {
1111
sourceCompatibility = JavaVersion.VERSION_17

0 commit comments

Comments
 (0)