Skip to content

Commit b2f22c0

Browse files
authored
Cleanup the release process. (#1)
* Cleanup the release process. * Update badge.
1 parent c04347a commit b2f22c0

File tree

5 files changed

+10
-12
lines changed

5 files changed

+10
-12
lines changed

.github/workflows/gradle.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jobs:
2828
- name: Build with Gradle
2929
run: ./gradlew all
3030
- name: Archive jar file
31-
uses: actions/upload-artifact@v2
31+
uses: actions/upload-artifact@v3
3232
with:
3333
name: silabs-pti
3434
path: silabs-pti/build/libs/*.jar
3535
- name: Archive license file
36-
uses: actions/upload-artifact@v2
36+
uses: actions/upload-artifact@v3
3737
with:
3838
name: silabs-pti
3939
path: LICENSE.txt

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Java CI with Gradle](https://github.com/SiliconLabs/java_packet_trace_library/actions/workflows/gradle.yml/badge.svg)](https://github.com/SiliconLabs/java_packet_trace_library/actions/workflows/gradle.yml)
1+
[![Java CI with Gradle](https://github.com/SiliconLabsSoftware/java-pti/actions/workflows/gradle.yml/badge.svg)](https://github.com/SiliconLabsSoftware/java-pti/actions/workflows/gradle.yml)
22

33
# What is this?
44

external/java-pcap.jar

0 Bytes
Binary file not shown.

silabs-pti/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.12.2
1+
1.12.3

silabs-pti/src/main/java/com/silabs/pti/debugchannel/DebugMessageType.java

+6-8
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@
1111
* sections of the MSLA applicable to Source Code.
1212
*
1313
******************************************************************************/
14-
14+
15+
1516
// !!!! This file is generated via 'gradle createDebugMessageTypes' command. Please do not edit manually!!!!!
1617

18+
1719
package com.silabs.pti.debugchannel;
1820

1921
import java.util.ResourceBundle;
@@ -140,14 +142,10 @@ public static DebugMessageType get(final int value) {
140142
}
141143
}
142144
return DebugMessageType.INVALID;
143-
}
145+
}
144146

145-
public static int featureLevel() {
146-
return 22;
147-
}
147+
public static int featureLevel() { return 22; }
148148

149-
public static String featureDate() {
150-
return "2022.1.8";
151-
}
149+
public static String featureDate() { return "2022.1.8"; }
152150

153151
}

0 commit comments

Comments
 (0)