Updated version

This commit is contained in:
nathan 2016-05-31 02:21:42 +02:00
parent 02a34f1293
commit fcbfacd252
3 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,7 @@
- Dorkbox PE Parser - Apache 2.0 License
https://github.com/dorkbox
Copyright 2012, dorkbox, llc
A Windows PE (Portable Executable) file parser for java.
- Dorkbox Utils - Apache 2.0 License

View File

@ -19,7 +19,7 @@ This project is **kept in sync** with the utilities library, so "jar hell" is no
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>PeParser</artifactId>
<version>2.6</version>
<version>2.7</version>
</dependency>
```

View File

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