Skip to content

Commit 93abac5

Browse files
committed
Increase version number to 0.5.1
1 parent 065e00f commit 93abac5

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ If you are using Maven, add the below dependency to your pom.xml:
4141
<dependency>
4242
<groupId>net.codecrete.usb</groupId>
4343
<artifactId>java-does-usb</artifactId>
44-
<version>0.5.0</version>
44+
<version>0.5.1</version>
4545
</dependency>
4646
```
4747

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

5050
```groovy
51-
compile group: 'net.codecrete.usb', name: 'java-does-usb', version: '0.5.0'
51+
compile group: 'net.codecrete.usb', name: 'java-does-usb', version: '0.5.1'
5252
```
5353

5454
```java

examples/bulk_transfer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ $ mvn compile exec:exec
3939
[INFO] Scanning for projects...
4040
[INFO]
4141
[INFO] --------------< net.codecrete.usb.examples:bulk-transfer >--------------
42-
[INFO] Building bulk-transfer 0.5.0
42+
[INFO] Building bulk-transfer 0.5.1
4343
[INFO] --------------------------------[ jar ]---------------------------------
4444
[INFO]
4545
[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ bulk-transfer ---

examples/bulk_transfer/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>net.codecrete.usb.examples</groupId>
88
<artifactId>bulk-transfer</artifactId>
9-
<version>0.5.0</version>
9+
<version>0.5.1</version>
1010

1111
<name>bulk-transfer</name>
1212
<url>https://github.com/manuelbl/JavaDoesUSB/examples/bulk_transfer</url>
@@ -21,7 +21,7 @@
2121
<dependency>
2222
<groupId>net.codecrete.usb</groupId>
2323
<artifactId>java-does-usb</artifactId>
24-
<version>0.5.0</version>
24+
<version>0.5.1</version>
2525
</dependency>
2626
</dependencies>
2727

examples/enumerate/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ $ mvn compile exec:exec
3838
[INFO] Scanning for projects...
3939
[INFO]
4040
[INFO] ----------------< net.codecrete.usb.examples:enumerate >----------------
41-
[INFO] Building enumerate 0.5.0
41+
[INFO] Building enumerate 0.5.1
4242
[INFO] --------------------------------[ jar ]---------------------------------
4343
[INFO]
4444
[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ enumerate ---

examples/enumerate/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>net.codecrete.usb.examples</groupId>
88
<artifactId>enumerate</artifactId>
9-
<version>0.5.0</version>
9+
<version>0.5.1</version>
1010

1111
<name>enumerate</name>
1212
<url>https://github.com/manuelbl/JavaDoesUSB/examples/enumerate</url>
@@ -21,7 +21,7 @@
2121
<dependency>
2222
<groupId>net.codecrete.usb</groupId>
2323
<artifactId>java-does-usb</artifactId>
24-
<version>0.5.0</version>
24+
<version>0.5.1</version>
2525
</dependency>
2626
</dependencies>
2727

examples/monitor/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ $ mvn compile exec:exec
3838
[INFO] Scanning for projects...
3939
[INFO]
4040
[INFO] -----------------< net.codecrete.usb.examples:monitor >-----------------
41-
[INFO] Building monitor 0.5.0
41+
[INFO] Building monitor 0.5.1
4242
[INFO] --------------------------------[ jar ]---------------------------------
4343
[INFO]
4444
[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ monitor ---

examples/monitor/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>net.codecrete.usb.examples</groupId>
88
<artifactId>monitor</artifactId>
9-
<version>0.5.0</version>
9+
<version>0.5.1</version>
1010

1111
<name>monitor</name>
1212
<url>https://github.com/manuelbl/JavaDoesUSB/examples/monitor</url>
@@ -21,7 +21,7 @@
2121
<dependency>
2222
<groupId>net.codecrete.usb</groupId>
2323
<artifactId>java-does-usb</artifactId>
24-
<version>0.5.0</version>
24+
<version>0.5.1</version>
2525
</dependency>
2626
</dependencies>
2727

examples/stm_dfu/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ SUBSYSTEM=="usb", ATTRS{idVendor}=="0483", ATTRS{idProduct}=="df11", MODE="0666"
5757
Run the command below (adapting the file path depending on your specific board):
5858

5959
```shell
60-
$ java --enable-preview --enable-native-access=ALL-UNNAMED -jar target/stm_dfu-0.5.0.jar ../../test-devices/loopback-stm32/bin/blackpill-f401cc.bin
60+
$ java --enable-preview --enable-native-access=ALL-UNNAMED -jar target/stm_dfu-0.5.1.jar ../../test-devices/loopback-stm32/bin/blackpill-f401cc.bin
6161
DFU device found with serial 35A737883336.
6262
Target memory segment: Internal Flash
6363
Erasing page at 0x8000000 (size 0x4000)

examples/stm_dfu/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>net.codecrete.usb.examples</groupId>
66
<artifactId>stm_dfu</artifactId>
7-
<version>0.5.0</version>
7+
<version>0.5.1</version>
88

99
<name>stm_dfu</name>
1010
<url>https://github.com/manuelbl/JavaDoesUSB/examples/stm_dfu</url>
@@ -19,7 +19,7 @@
1919
<dependency>
2020
<groupId>net.codecrete.usb</groupId>
2121
<artifactId>java-does-usb</artifactId>
22-
<version>0.5.0</version>
22+
<version>0.5.1</version>
2323
</dependency>
2424
</dependencies>
2525

0 commit comments

Comments
 (0)