Skip to content

Commit 60d3562

Browse files
committed
release 2.0.1
1 parent bb046e9 commit 60d3562

File tree

13 files changed

+17
-17
lines changed

13 files changed

+17
-17
lines changed

.projectKnowledge/JBBP.mmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Mind Map generated by NB MindMap plugin
22
> __version__=`1.1`,showJumps=`true`
33
---
44

5-
# Java Binary<br/>Block Parser<br/>v 2\.0\.0
5+
# Java Binary<br/>Block Parser<br/>v 2\.0\.1
66

77
## License
88
> fillColor=`#33CC00`,leftSide=`true`

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![License Apache 2.0](https://img.shields.io/badge/license-Apache%20License%202.0-green.svg)](http://www.apache.org/licenses/LICENSE-2.0)
2-
[![Maven central](https://maven-badges.herokuapp.com/maven-central/com.igormaznitsa/jbbp/badge.svg)](http://search.maven.org/#artifactdetails|com.igormaznitsa|jbbp|2.0.0|jar)
2+
[![Maven central](https://maven-badges.herokuapp.com/maven-central/com.igormaznitsa/jbbp/badge.svg)](http://search.maven.org/#artifactdetails|com.igormaznitsa|jbbp|2.0.1|jar)
33
[![Java 1.8+](https://img.shields.io/badge/java-1.8%2b-green.svg)](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
44
[![Android 3.0+](https://img.shields.io/badge/android-3.0%2b-green.svg)](http://developer.android.com/sdk/index.html)
55
[![PayPal donation](https://img.shields.io/badge/donation-PayPal-red.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AHWJHJFBAWGL2)
@@ -12,7 +12,7 @@ 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.1 (SNAPSHOT)**
15+
- **2.0.1 (04-feb-2020)**
1616
- [#26](https://github.com/raydac/java-binary-block-parser/issues/26) fixed bug in array write with MSB0
1717

1818
- **2.0.0 (20-nov-2019)**
@@ -41,10 +41,10 @@ The Framework has been published in the Maven Central and can be easily added as
4141
<dependency>
4242
<groupId>com.igormaznitsa</groupId>
4343
<artifactId>jbbp</artifactId>
44-
<version>2.0.0</version>
44+
<version>2.0.1</version>
4545
</dependency>
4646
```
47-
the precompiled library jar, javadoc and sources also can be downloaded directly from [the Maven central.](https://search.maven.org/artifact/com.igormaznitsa/jbbp/2.0.0/jar)
47+
the precompiled library jar, javadoc and sources also can be downloaded directly from [the Maven central.](https://search.maven.org/artifact/com.igormaznitsa/jbbp/2.0.1/jar)
4848

4949
# Hello world
5050
The library is very easy in use because in many cases only two its classes are needed - com.igormaznitsa.jbbp.JBBPParser (for data parsing) and com.igormaznitsa.jbbp.io.JBBPOut (for binary block writing). Both these classes work over low-level IO classes - com.igormaznitsa.jbbp.io.JBBPBitInputStream and com.igormaznitsa.jbbp.io.JBBPBitOutputStream, those bit stream classes are the core of the library.
@@ -88,7 +88,7 @@ in Maven it can be used through snippet:
8888
<plugin>
8989
<groupId>com.igormaznitsa</groupId>
9090
<artifactId>jbbp-maven-plugin</artifactId>
91-
<version>2.0.0</version>
91+
<version>2.0.1</version>
9292
<executions>
9393
<execution>
9494
<id>gen-jbbp-src</id>

docs/jbbp_mm.png

16 Bytes
Loading

jbbp-plugins/jbbp-gradle/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def getProp(name, dflt) {
77
}
88
}
99

10-
def jbbpVersion = getProp('jbbp_plugin_version', '2.0.0')
10+
def jbbpVersion = getProp('jbbp_plugin_version', '2.0.1')
1111
def metaLibVersion = getProp('meta_lib_version', '1.1.2')
1212

1313
group = 'com.igormaznitsa'

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.1-SNAPSHOT</version>
9+
<version>2.0.1</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.1-SNAPSHOT</version>
8+
<version>2.0.1</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.1-SNAPSHOT</version>
8+
<version>2.0.1</version>
99
</parent>
1010

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

jbbp-plugins/jbbp-maven/jbbp-maven-plugin/src/test/resources/com/igormaznitsa/jbbp/plugin/mvn/mojoConfig.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<plugin>
1515
<groupId>com.igormaznitsa</groupId>
1616
<artifactId>jbbp-maven-plugin</artifactId>
17-
<version>2.0.1-SNAPSHOT</version>
17+
<version>2.0.1</version>
1818
<goals>
1919
<goal>generate</goal>
2020
</goals>

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.1-SNAPSHOT</version>
8+
<version>2.0.1</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.1-SNAPSHOT</version>
9+
<version>2.0.1</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.1-SNAPSHOT</version>
8+
<version>2.0.1</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.1-SNAPSHOT</version>
8+
<version>2.0.1</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.1-SNAPSHOT</version>
7+
<version>2.0.1</version>
88
<packaging>pom</packaging>
99

1010
<modules>
@@ -21,7 +21,7 @@
2121
<maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
2222
<mvn.version>3.0</mvn.version>
2323
<meta.version>1.1.2</meta.version>
24-
<jbbp.version>2.0.1-SNAPSHOT</jbbp.version>
24+
<jbbp.version>2.0.1</jbbp.version>
2525
<jbbp.plugin.version>${jbbp.version}</jbbp.plugin.version>
2626
<maven.compiler.source>1.8</maven.compiler.source>
2727
<maven.compiler.target>1.8</maven.compiler.target>

0 commit comments

Comments
 (0)