Skip to content

Commit

Permalink
maintenance release 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
raydac committed Aug 22, 2020
1 parent 7265046 commit 178cc2b
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 22 deletions.
15 changes: 2 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,13 @@ Java has some embedded features to parse binary data (for instance ByteBuffer),
![Use cases](https://github.com/raydac/java-binary-block-parser/blob/master/docs/jbbp_mm.png)

# Change log
- **2.0.2 (SNAPSHOT)**
- __2.0.2 (22-aug-2020)__
- added `JBBPOut#Bin` variant to override `@Bin` annotation fields in written objects.
- [#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.

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

- **2.0.0 (20-nov-2019)**
- __removed DslBinCustom annotation, use @Bin annotation instead__
- __renamed attributes of @Bin annotation to their correct form__
- __reworked object mapping system, removed hacks to instantiate classes, now only mapping to objects allowed, support of private fields mapping is removed__
- __minimal JDK version now 1.8+__
- __minimal Android API now 3.0+__
- added support of getters and setters into mapping
- added `Object newInstance(Class)` method support of mapped classes to generate local class member instances
- added generating of `makeFIELD()` method for structure types in Java class converter
- refactoring

[Full changelog](https://github.com/raydac/java-binary-block-parser/blob/master/changelog.txt)

# Maven dependency
Expand Down
2 changes: 1 addition & 1 deletion jbbp-plugins/jbbp-gradle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>jbbp-main-plugin-pom</artifactId>
<version>2.0.2-SNAPSHOT</version>
<version>2.0.2</version>
</parent>

<artifactId>jbbp-gradle-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jbbp-plugins/jbbp-maven/jbbp-maven-plugin-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>jbbp-maven-plugin-pom</artifactId>
<version>2.0.2-SNAPSHOT</version>
<version>2.0.2</version>
</parent>

<artifactId>jbbp-maven-plugin-tests</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jbbp-plugins/jbbp-maven/jbbp-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>jbbp-maven-plugin-pom</artifactId>
<version>2.0.2-SNAPSHOT</version>
<version>2.0.2</version>
</parent>

<artifactId>jbbp-maven-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jbbp-plugins/jbbp-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>jbbp-main-plugin-pom</artifactId>
<version>2.0.2-SNAPSHOT</version>
<version>2.0.2</version>
</parent>

<artifactId>jbbp-maven-plugin-pom</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jbbp-plugins/jbbp-plugin-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>jbbp-main-plugin-pom</artifactId>
<version>2.0.2-SNAPSHOT</version>
<version>2.0.2</version>
</parent>

<artifactId>jbbp-plugin-common</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jbbp-plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>jbbp-main-pom</artifactId>
<version>2.0.2-SNAPSHOT</version>
<version>2.0.2</version>
</parent>

<artifactId>jbbp-main-plugin-pom</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jbbp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>jbbp-main-pom</artifactId>
<version>2.0.2-SNAPSHOT</version>
<version>2.0.2</version>
</parent>

<artifactId>jbbp</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.igormaznitsa</groupId>
<artifactId>jbbp-main-pom</artifactId>
<version>2.0.2-SNAPSHOT</version>
<version>2.0.2</version>
<packaging>pom</packaging>

<modules>
Expand All @@ -20,7 +20,7 @@
<maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
<mvn.version>3.0</mvn.version>
<meta.version>1.1.2</meta.version>
<jbbp.version>2.0.2-SNAPSHOT</jbbp.version>
<jbbp.version>2.0.2</jbbp.version>
<jbbp.plugin.version>${jbbp.version}</jbbp.plugin.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
Expand Down

0 comments on commit 178cc2b

Please sign in to comment.