Skip to content

Commit d6a0fd7

Browse files
authored
release 0.3.1 (#6)
* release 0.3.1 fix bug for when the first suffix character exceeds 1 byte
1 parent c1a9db3 commit d6a0fd7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ To install via Maven:
2424
<dependency>
2525
<groupId>de.fxlae</groupId>
2626
<artifactId>typeid-java</artifactId>
27-
<version>0.3.0</version>
27+
<version>0.3.1</version>
2828
</dependency>
2929
```
3030

3131
For installation via Gradle:
3232

3333
```kotlin
34-
implementation("de.fxlae:typeid-java:0.3.0")
34+
implementation("de.fxlae:typeid-java:0.3.1")
3535
```
3636

3737
## Usage

build-conventions/src/main/kotlin/de/fxlae/typeid/typeid.library-conventions.gradle.kts

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

77
group = "de.fxlae"
8-
version = "0.3.0"
8+
version = "0.3.1"
99

1010
java {
1111
withJavadocJar()

lib/src/main/java/de/fxlae/typeid/lib/TypeIdLib.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public final class TypeIdLib {
3939
NOOP, NOOP, NOOP, NOOP, NOOP, NOOP, NOOP, NOOP, NOOP, NOOP,
4040
NOOP, NOOP, NOOP, NOOP, NOOP, NOOP, NOOP, 0x0A, 0x0B, 0x0C, // a, b, c
4141
0x0D, 0x0E, 0x0F, 0x10, 0x11, NOOP, 0x12, 0x13, NOOP, 0x14, // d, e, f, g, h, j, k, m
42-
0x15, NOOP, 0x16, 0x17, 0x18, 0x19, 0x1A, NOOP, 0x1B, 0x1C, // n, p, q, r, s, value, v, w
42+
0x15, NOOP, 0x16, 0x17, 0x18, 0x19, 0x1A, NOOP, 0x1B, 0x1C, // n, p, q, r, s, t, v, w
4343
0x1D, 0x1E, 0x1F, NOOP, NOOP, NOOP, NOOP, NOOP, NOOP, NOOP, // x, y, z
4444
NOOP, NOOP, NOOP, NOOP, NOOP, NOOP, NOOP, NOOP, NOOP, NOOP,
4545
NOOP, NOOP, NOOP, NOOP, NOOP, NOOP, NOOP, NOOP, NOOP, NOOP,

0 commit comments

Comments
 (0)