Updated version

master
Robinson 2021-04-09 16:04:25 +02:00
parent 5b134e27ab
commit e6525e88a7
3 changed files with 4 additions and 4 deletions

View File

@ -23,7 +23,7 @@ Maven Info
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>PeParser</artifactId>
<version>3.0</version>
<version>3.1</version>
</dependency>
</dependencies>
```
@ -33,7 +33,7 @@ Gradle Info
```
dependencies {
...
implementation("com.dorkbox:PeParser:3.0")
implementation("com.dorkbox:PeParser:3.1")
}
```

View File

@ -38,7 +38,7 @@ object Extras {
// set for the project
const val description = "Windows PE (Portable Executable) file parser for Java 8+"
const val group = "com.dorkbox"
const val version = "3.0"
const val version = "3.1"
// set as project.ext
const val name = "PeParser"

View File

@ -49,7 +49,7 @@ public class PE {
*/
public static
String getVersion() {
return "3.0";
return "3.1";
}
private static final int PE_OFFSET_LOCATION = 0x3c;