Skip to content

Commit

Permalink
release 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
raydac committed Dec 24, 2024
1 parent ac3949c commit 9384c67
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ that for Java. So I developed the JBBP library.<br>

# Change log

- __3.0.1 (SNAPSHOT)__
- __3.0.1 (24-dec-2024)__
- added `MSB0_DIRECT` bit order mode, MSB0 without data
revers [#46](https://github.com/raydac/java-binary-block-parser/issues/46)
- added `JBBPBitInputStream#isDetectedPartlyReadBitField` to check that only part of bit field read during last
Expand Down
2 changes: 1 addition & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
3.0.1 (SNAPSHOT)
3.0.1 (24-dec-2024)
- added `MSB0_DIRECT` bit order mode, MSB0 without data revers [#46](https://github.com/raydac/java-binary-block-parser/issues/46)
- added `JBBPBitInputStream#isDetectedPartlyReadBitField` to check that only part of bit field read during last operation
- added flag into constructors for JBBPBitInputStream to force return -1 instead of partly accumulated bits data if end of field
Expand Down
2 changes: 1 addition & 1 deletion jbbp-plugins/jbbp-gradle-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-main-plugin-pom</artifactId>
<version>3.0.1-SNAPSHOT</version>
<version>3.0.1</version>
</parent>

<artifactId>jbbp-gradle-tests</artifactId>
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>3.0.1-SNAPSHOT</version>
<version>3.0.1</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>3.0.1-SNAPSHOT</version>
<version>3.0.1</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>3.0.1-SNAPSHOT</version>
<version>3.0.1</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>3.0.1-SNAPSHOT</version>
<version>3.0.1</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>3.0.1-SNAPSHOT</version>
<version>3.0.1</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>3.0.1-SNAPSHOT</version>
<version>3.0.1</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>3.0.1-SNAPSHOT</version>
<version>3.0.1</version>
</parent>

<artifactId>jbbp</artifactId>
Expand Down
6 changes: 3 additions & 3 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>3.0.1-SNAPSHOT</version>
<version>3.0.1</version>
<packaging>pom</packaging>

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

<properties>
<jbbp.version>3.0.1-SNAPSHOT</jbbp.version>
<jbbp.version>3.0.1</jbbp.version>
<jbbp.plugin.version>${jbbp.version}</jbbp.plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Expand Down Expand Up @@ -307,7 +307,7 @@
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>extra-enforcer-rules</artifactId>
<version>1.8.0</version>
<version>1.9.0</version>
</dependency>
</dependencies>
</plugin>
Expand Down

0 comments on commit 9384c67

Please sign in to comment.