You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: release version 3.12.1 with enhancements and fixes
- Fixed ByteBuffer to auto-grow when writing beyond current capacity on non-fixed buffers, preventing ArrayIndexOutOfBounds exceptions.
- Updated ByteBufferIOStream.align method to require a positive power-of-two alignment, throwing IllegalArgumentException for invalid values.
- Redesigned documentation site homepage and updated version references to 3.12.1.
- Added an Android compatibility guide in the documentation.
<p>FastProto is released under the <ahref="https://www.apache.org/licenses/LICENSE-2.0.html">Apache License 2.0</a>. Commercial‑friendly and widely adopted.</p>
262
-
<p>Source code on <ahref="https://github.com/indunet/fastproto">GitHub</a>. Artifacts on <ahref="https://search.maven.org/artifact/org.indunet/fastproto/3.12.0/jar">Maven Central</a>.</p>
262
+
<p>Source code on <ahref="https://github.com/indunet/fastproto">GitHub</a>. Artifacts on <ahref="https://search.maven.org/artifact/org.indunet/fastproto/3.12.1/jar">Maven Central</a>.</p>
Copy file name to clipboardExpand all lines: pom.xml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -6,10 +6,10 @@
6
6
7
7
<groupId>org.indunet</groupId>
8
8
<artifactId>fastproto</artifactId>
9
-
<version>3.12.0</version>
9
+
<version>3.12.1</version>
10
10
<packaging>jar</packaging>
11
11
<name>FastProto</name>
12
-
<description>FastProto is a lightweight Java library that makes binary protocols effortless, with annotation-driven mapping and built-in checksum/CRC support (CRC8/16/32/64, LRC, XOR).</description>
12
+
<description>FastProto is a lightweight Java library that makes binary protocols effortless, with annotation-driven mapping and built-in checksum/CRC.</description>
0 commit comments