Skip to content

Commit

Permalink
release 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
raydac committed Aug 20, 2018
1 parent ff058d5 commit 8beb4eb
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .projectKnowledge/JBBP.mmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Mind Map generated by NB MindMap plugin
> __version__=`1.1`,showJumps=`true`
---

# Java Binary<br/>Block Parser<br/>v 1\.4\.0
# Java Binary<br/>Block Parser<br/>v 1\.4\.1

## License
> fillColor=`#33CC00`,leftSide=`true`
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![License Apache 2.0](https://img.shields.io/badge/license-Apache%20License%202.0-green.svg)](http://www.apache.org/licenses/LICENSE-2.0)
[![Maven central](https://maven-badges.herokuapp.com/maven-central/com.igormaznitsa/jbbp/badge.svg)](http://search.maven.org/#artifactdetails|com.igormaznitsa|jbbp|1.4.0|jar)
[![Maven central](https://maven-badges.herokuapp.com/maven-central/com.igormaznitsa/jbbp/badge.svg)](http://search.maven.org/#artifactdetails|com.igormaznitsa|jbbp|1.4.1|jar)
[![Codacy Badge](https://api.codacy.com/project/badge/grade/50b0281430a94eb6abe417409f99ed58)](https://www.codacy.com/app/rrg4400/java-binary-block-parser)
[![Java 6.0+](https://img.shields.io/badge/java-6.0%2b-green.svg)](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
[![Android 2.0+](https://img.shields.io/badge/android-2.0%2b-green.svg)](http://developer.android.com/sdk/index.html)
Expand All @@ -15,7 +15,7 @@ For instance I have been very actively using the framework in [the ZX-Poly emula
![Use cases](https://github.com/raydac/java-binary-block-parser/blob/master/docs/jbbp_mm.png)

# Change log
- **1.4.1 (SNAPSHOT)**
- **1.4.1 (20-aug-2018)**
- fixed incompatibility in tokenizer regex syntax for Android SDK [#23](https://github.com/raydac/java-binary-block-parser/issues/23)
- added DslBinCustom annotation to provide way to mark custom type fields for JBBPDslBuilder
- fixed NPE in JBBPDslBuilder for not-provided outBitNumber attribute in annotated field marked as type BIT or BIT_ARRAY [#20](https://github.com/raydac/java-binary-block-parser/issues/20)
Expand Down Expand Up @@ -56,7 +56,7 @@ The Framework has been published in the Maven Central and can be easily added as
<dependency>
<groupId>com.igormaznitsa</groupId>
<artifactId>jbbp</artifactId>
<version>1.4.0</version>
<version>1.4.1</version>
</dependency>
```
the precompiled library jar, javadoc and sources also can be downloaded directly from [the Maven central.](http://search.maven.org/#browse|808871750)
Expand Down Expand Up @@ -103,7 +103,7 @@ in Maven you should just add such plugin execution
<plugin>
<groupId>com.igormaznitsa</groupId>
<artifactId>jbbp-maven-plugin</artifactId>
<version>1.4.0</version>
<version>1.4.1</version>
<executions>
<execution>
<id>gen-jbbp-src</id>
Expand Down
2 changes: 1 addition & 1 deletion jbbp-plugins/jbbp-gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def getProp(name, dflt) {
}
}

def jbbpVersion = getProp('jbbp_plugin_version', '1.4.1-SNAPSHOT')
def jbbpVersion = getProp('jbbp_plugin_version', '1.4.1')
def metaLibVersion = getProp('meta_lib_version', '1.1.2')

group = 'com.igormaznitsa'
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>1.4.1-SNAPSHOT</version>
<version>1.4.1</version>
</parent>

<artifactId>jbbp-gradle-plugin</artifactId>
Expand Down
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-tests</artifactId>
<version>1.4.1-SNAPSHOT</version>
<version>1.4.1</version>
</parent>

<artifactId>jbbp-mvn-test-getterssetters</artifactId>
Expand Down
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-tests</artifactId>
<version>1.4.1-SNAPSHOT</version>
<version>1.4.1</version>
</parent>

<artifactId>jbbp-mvn-test-customvars</artifactId>
Expand Down
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-tests</artifactId>
<version>1.4.1-SNAPSHOT</version>
<version>1.4.1</version>
</parent>

<artifactId>jbbp-mvn-test-primitives</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>1.4.1-SNAPSHOT</version>
<version>1.4.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>1.4.1-SNAPSHOT</version>
<version>1.4.1</version>
</parent>

<artifactId>jbbp-maven-plugin</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<plugin>
<groupId>com.igormaznitsa</groupId>
<artifactId>jbbp-maven-plugin</artifactId>
<version>1.4.1-SNAPSHOT</version>
<version>1.4.1</version>
<goals>
<goal>generate</goal>
</goals>
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>1.4.1-SNAPSHOT</version>
<version>1.4.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>1.4.1-SNAPSHOT</version>
<version>1.4.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>1.4.1-SNAPSHOT</version>
<version>1.4.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>1.4.1-SNAPSHOT</version>
<version>1.4.1</version>
</parent>

<artifactId>jbbp</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion 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>1.4.1-SNAPSHOT</version>
<version>1.4.1</version>
<packaging>pom</packaging>

<modules>
Expand Down

0 comments on commit 8beb4eb

Please sign in to comment.