Skip to content

Commit 178cc2b

Browse files
committed
maintenance release 2.0.2
1 parent 7265046 commit 178cc2b

File tree

9 files changed

+11
-22
lines changed

9 files changed

+11
-22
lines changed

README.md

+2-13
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,13 @@ Java has some embedded features to parse binary data (for instance ByteBuffer),
1212
![Use cases](https://github.com/raydac/java-binary-block-parser/blob/master/docs/jbbp_mm.png)
1313

1414
# Change log
15-
- **2.0.2 (SNAPSHOT)**
15+
- __2.0.2 (22-aug-2020)__
1616
- added `JBBPOut#Bin` variant to override `@Bin` annotation fields in written objects.
1717
- [#28](https://github.com/raydac/java-binary-block-parser/issues/28) added `JBBPOut#BinForceByteOrder` to override byte order defined in `@Bin` annotations of written object.
1818

19-
- **2.0.1 (04-feb-2020)**
19+
- __2.0.1 (04-feb-2020)__
2020
- [#26](https://github.com/raydac/java-binary-block-parser/issues/26) fixed bug in array write with MSB0
2121

22-
- **2.0.0 (20-nov-2019)**
23-
- __removed DslBinCustom annotation, use @Bin annotation instead__
24-
- __renamed attributes of @Bin annotation to their correct form__
25-
- __reworked object mapping system, removed hacks to instantiate classes, now only mapping to objects allowed, support of private fields mapping is removed__
26-
- __minimal JDK version now 1.8+__
27-
- __minimal Android API now 3.0+__
28-
- added support of getters and setters into mapping
29-
- added `Object newInstance(Class)` method support of mapped classes to generate local class member instances
30-
- added generating of `makeFIELD()` method for structure types in Java class converter
31-
- refactoring
32-
3322
[Full changelog](https://github.com/raydac/java-binary-block-parser/blob/master/changelog.txt)
3423

3524
# Maven dependency

jbbp-plugins/jbbp-gradle/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.igormaznitsa</groupId>
88
<artifactId>jbbp-main-plugin-pom</artifactId>
9-
<version>2.0.2-SNAPSHOT</version>
9+
<version>2.0.2</version>
1010
</parent>
1111

1212
<artifactId>jbbp-gradle-plugin</artifactId>

jbbp-plugins/jbbp-maven/jbbp-maven-plugin-tests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>jbbp-maven-plugin-pom</artifactId>
8-
<version>2.0.2-SNAPSHOT</version>
8+
<version>2.0.2</version>
99
</parent>
1010

1111
<artifactId>jbbp-maven-plugin-tests</artifactId>

jbbp-plugins/jbbp-maven/jbbp-maven-plugin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>jbbp-maven-plugin-pom</artifactId>
8-
<version>2.0.2-SNAPSHOT</version>
8+
<version>2.0.2</version>
99
</parent>
1010

1111
<artifactId>jbbp-maven-plugin</artifactId>

jbbp-plugins/jbbp-maven/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>jbbp-main-plugin-pom</artifactId>
8-
<version>2.0.2-SNAPSHOT</version>
8+
<version>2.0.2</version>
99
</parent>
1010

1111
<artifactId>jbbp-maven-plugin-pom</artifactId>

jbbp-plugins/jbbp-plugin-common/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.igormaznitsa</groupId>
88
<artifactId>jbbp-main-plugin-pom</artifactId>
9-
<version>2.0.2-SNAPSHOT</version>
9+
<version>2.0.2</version>
1010
</parent>
1111

1212
<artifactId>jbbp-plugin-common</artifactId>

jbbp-plugins/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>jbbp-main-pom</artifactId>
8-
<version>2.0.2-SNAPSHOT</version>
8+
<version>2.0.2</version>
99
</parent>
1010

1111
<artifactId>jbbp-main-plugin-pom</artifactId>

jbbp/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>jbbp-main-pom</artifactId>
8-
<version>2.0.2-SNAPSHOT</version>
8+
<version>2.0.2</version>
99
</parent>
1010

1111
<artifactId>jbbp</artifactId>

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.igormaznitsa</groupId>
66
<artifactId>jbbp-main-pom</artifactId>
7-
<version>2.0.2-SNAPSHOT</version>
7+
<version>2.0.2</version>
88
<packaging>pom</packaging>
99

1010
<modules>
@@ -20,7 +20,7 @@
2020
<maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
2121
<mvn.version>3.0</mvn.version>
2222
<meta.version>1.1.2</meta.version>
23-
<jbbp.version>2.0.2-SNAPSHOT</jbbp.version>
23+
<jbbp.version>2.0.2</jbbp.version>
2424
<jbbp.plugin.version>${jbbp.version}</jbbp.plugin.version>
2525
<maven.compiler.source>1.8</maven.compiler.source>
2626
<maven.compiler.target>1.8</maven.compiler.target>

0 commit comments

Comments
 (0)