Skip to content

Commit

Permalink
Increase version to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelbl committed Jan 30, 2023
1 parent 04a62d4 commit 7dfc416
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 14 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ The library uses the [Foreign Function & Memory API](https://github.com/openjdk/

### Planned

- High-throughput input/output streams
- Isochronous transfer

### Not planned
Expand All @@ -38,14 +39,14 @@ If you are using Maven, add the below dependency to your pom.xml:
<dependency>
<groupId>net.codecrete.usb</groupId>
<artifactId>java-does-usb</artifactId>
<version>0.4.0</version>
<version>0.4.1</version>
</dependency>
```

If you are using Gradle, add the below dependency to your build.gradle file:

```groovy
compile group: 'net.codecrete.usb', name: 'java-does-usb', version: '0.4.0'
compile group: 'net.codecrete.usb', name: 'java-does-usb', version: '0.4.1'
```

```java
Expand Down
4 changes: 2 additions & 2 deletions examples/bulk_transfer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>net.codecrete.usb.examples</groupId>
<artifactId>bulk-transfer</artifactId>
<version>0.4.0</version>
<version>0.4.1</version>

<name>bulk-transfer</name>
<url>https://github.com/manuelbl/JavaDoesUSB/examples/bulk_transfer</url>
Expand All @@ -21,7 +21,7 @@
<dependency>
<groupId>net.codecrete.usb</groupId>
<artifactId>java-does-usb</artifactId>
<version>0.4.0</version>
<version>0.4.1</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion examples/enumerate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ $ mvn compile exec:exec
[INFO] Scanning for projects...
[INFO]
[INFO] ----------------< net.codecrete.usb.examples:enumerate >----------------
[INFO] Building enumerate 0.4.0
[INFO] Building enumerate 0.4.1
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ enumerate ---
Expand Down
4 changes: 2 additions & 2 deletions examples/enumerate/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>net.codecrete.usb.examples</groupId>
<artifactId>enumerate</artifactId>
<version>0.4.0</version>
<version>0.4.1</version>

<name>enumerate</name>
<url>https://github.com/manuelbl/JavaDoesUSB/examples/enumerate</url>
Expand All @@ -21,7 +21,7 @@
<dependency>
<groupId>net.codecrete.usb</groupId>
<artifactId>java-does-usb</artifactId>
<version>0.4.0</version>
<version>0.4.1</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion examples/monitor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ $ mvn compile exec:exec
[INFO] Scanning for projects...
[INFO]
[INFO] -----------------< net.codecrete.usb.examples:monitor >-----------------
[INFO] Building monitor 0.4.0
[INFO] Building monitor 0.4.1
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ monitor ---
Expand Down
4 changes: 2 additions & 2 deletions examples/monitor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>net.codecrete.usb.examples</groupId>
<artifactId>monitor</artifactId>
<version>0.4.0</version>
<version>0.4.1</version>

<name>monitor</name>
<url>https://github.com/manuelbl/JavaDoesUSB/examples/monitor</url>
Expand All @@ -21,7 +21,7 @@
<dependency>
<groupId>net.codecrete.usb</groupId>
<artifactId>java-does-usb</artifactId>
<version>0.4.0</version>
<version>0.4.1</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion examples/stm_dfu/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ SUBSYSTEM=="usb", ATTRS{idVendor}=="0483", ATTRS{idProduct}=="df11", MODE="0666"
Run the command below (adapting the file path depending on your specific board):

```shell
$ java --enable-preview --enable-native-access=ALL-UNNAMED -jar target/stm_dfu-0.4.0.jar ../../test-devices/loopback-stm32/bin/blackpill-f401cc.bin
$ java --enable-preview --enable-native-access=ALL-UNNAMED -jar target/stm_dfu-0.4.1.jar ../../test-devices/loopback-stm32/bin/blackpill-f401cc.bin
DFU device found with serial 36C730037136.
Target memory segment: Internal Flash
Erasing page at 0x8000000 (size 0x4000)
Expand Down
4 changes: 2 additions & 2 deletions examples/stm_dfu/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>net.codecrete.usb.examples</groupId>
<artifactId>stm_dfu</artifactId>
<version>0.4.0</version>
<version>0.4.1</version>

<name>stm_dfu</name>
<url>https://github.com/manuelbl/JavaDoesUSB/examples/stm_dfu</url>
Expand All @@ -13,7 +13,7 @@
<dependency>
<groupId>net.codecrete.usb</groupId>
<artifactId>java-does-usb</artifactId>
<version>0.4.0</version>
<version>0.4.1</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion java-does-usb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>net.codecrete.usb</groupId>
<artifactId>java-does-usb</artifactId>
<version>0.4.0</version>
<version>0.4.1</version>

<properties>
<maven.compiler.source>19</maven.compiler.source>
Expand Down

0 comments on commit 7dfc416

Please sign in to comment.