Skip to content

Commit b6000c7

Browse files
committed
started 3.0.3-SNAPSHOT
1 parent e3b033d commit b6000c7

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
![JBBP Logo](https://github.com/raydac/java-binary-block-parser/blob/master/logo.png)
22

33
[![License Apache 2.0](https://img.shields.io/badge/license-Apache%20License%202.0-green.svg)](http://www.apache.org/licenses/LICENSE-2.0)
4-
[![Maven central](https://maven-badges.herokuapp.com/maven-central/com.igormaznitsa/jbbp/badge.svg)](http://search.maven.org/#artifactdetails|com.igormaznitsa|jbbp|3.0.1|jar)
4+
[![Maven central](https://maven-badges.herokuapp.com/maven-central/com.igormaznitsa/jbbp/badge.svg)](http://search.maven.org/#artifactdetails|com.igormaznitsa|jbbp|3.0.2|jar)
55
[![Java 11+](https://img.shields.io/badge/java-11%2b-green.svg)](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
66
[![Android 12+](https://img.shields.io/badge/android-12%2b-green.svg)](http://developer.android.com/sdk/index.html)
77
[![Arthur's acres sanctuary donation](docs/arthur_sanctuary_banner.png)](https://www.arthursacresanimalsanctuary.org/donate)
@@ -55,7 +55,7 @@ The Framework has been published in the Maven Central and can be easily added as
5555
<dependency>
5656
<groupId>com.igormaznitsa</groupId>
5757
<artifactId>jbbp</artifactId>
58-
<version>3.0.1</version>
58+
<version>3.0.2</version>
5959
</dependency>
6060
```
6161

@@ -69,7 +69,7 @@ com.igormaznitsa.jbbp.JBBPParser (for data parsing) and com.igormaznitsa.jbbp.io
6969
Both these classes work over low-level IO classes - com.igormaznitsa.jbbp.io.JBBPBitInputStream and
7070
com.igormaznitsa.jbbp.io.JBBPBitOutputStream, those bit stream classes are the core of the library.
7171

72-
The easiet use case shows parsing of whole byte array to bits.
72+
The easiest use case shows parsing of whole byte array to bits.
7373

7474
```Java
7575
byte[]parsedBits=JBBPParser.prepare("bit:1 [_];").parse(new byte[]{1,2,3,4,5}).

jbbp-plugins/jbbp-gradle-tests/pom.xml

Lines changed: 1 addition & 1 deletion
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>3.0.2</version>
8+
<version>3.0.3-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>jbbp-gradle-tests</artifactId>

jbbp-plugins/jbbp-gradle/pom.xml

Lines changed: 1 addition & 1 deletion
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>3.0.2</version>
9+
<version>3.0.3-SNAPSHOT</version>
1010
</parent>
1111

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

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

Lines changed: 1 addition & 1 deletion
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>3.0.2</version>
8+
<version>3.0.3-SNAPSHOT</version>
99
</parent>
1010

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

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

Lines changed: 1 addition & 1 deletion
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>3.0.2</version>
8+
<version>3.0.3-SNAPSHOT</version>
99
</parent>
1010

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

jbbp-plugins/jbbp-maven/pom.xml

Lines changed: 1 addition & 1 deletion
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>3.0.2</version>
8+
<version>3.0.3-SNAPSHOT</version>
99
</parent>
1010

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

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

Lines changed: 1 addition & 1 deletion
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>3.0.2</version>
9+
<version>3.0.3-SNAPSHOT</version>
1010
</parent>
1111

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

jbbp-plugins/pom.xml

Lines changed: 1 addition & 1 deletion
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>3.0.2</version>
8+
<version>3.0.3-SNAPSHOT</version>
99
</parent>
1010

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

jbbp/pom.xml

Lines changed: 1 addition & 1 deletion
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>3.0.2</version>
8+
<version>3.0.3-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>jbbp</artifactId>

pom.xml

Lines changed: 2 additions & 2 deletions
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>3.0.2</version>
7+
<version>3.0.3-SNAPSHOT</version>
88
<packaging>pom</packaging>
99

1010
<modules>
@@ -14,7 +14,7 @@
1414
<url>https://github.com/raydac/java-binary-block-parser</url>
1515

1616
<properties>
17-
<jbbp.version>3.0.2</jbbp.version>
17+
<jbbp.version>3.0.3-SNAPSHOT</jbbp.version>
1818
<jbbp.plugin.version>${jbbp.version}</jbbp.plugin.version>
1919
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2020
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

0 commit comments

Comments
 (0)