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 - Dorkbox PE Parser - Apache 2.0 License
https://github.com/dorkbox https://github.com/dorkbox
Copyright 2012, dorkbox, llc Copyright 2012, dorkbox, llc
A Windows PE (Portable Executable) file parser for java.
- Dorkbox Utils - Apache 2.0 License - 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> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>PeParser</artifactId> <artifactId>PeParser</artifactId>
<version>2.6</version> <version>2.7</version>
</dependency> </dependency>
``` ```

View File

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