Skip to content

Commit

Permalink
Version 0.2.3: Support of ClassObject/InvokeMethod command in debugger,
Browse files Browse the repository at this point in the history
several bug-fixes (see history).
  • Loading branch information
srogmann committed Jul 25, 2021
1 parent 576a576 commit 6da4e9a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,6 @@ I wrote this project in my free time and I like my free time so support is given
## Changelog
* V 0.2.0, 2021-07-07: Initial release containing bytecode-interpreter and debugger.
* V 0.2.1, 2021-07-11: Added support of java.lang.reflect.Proxy.
* V 0.2.2, 2021-07-18: Use the class-loader of a class or class in context when analyzing new classes.
* V 0.2.2, 2021-07-18: Use the class-loader of a class or class in context when analyzing new classes.
* V 0.2.3, 2021-07-25: Support of ClassObject/InvokeMethod command in debugger, several bug-fixes (see history).

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<groupId>org.rogmann.jsmud</groupId>
<artifactId>jsmud-analysis</artifactId>
<version>0.2.2-SNAPSHOT</version>
<version>0.2.3-SNAPSHOT</version>

<name>JSMUD-analysis</name>
<description>Java simulator and multi-user debugger in order to analyze execution of bytecode</description>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/rogmann/jsmud/ClassRegistry.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class ClassRegistry implements VM {
private static final Logger LOG = LoggerFactory.getLogger(ClassRegistry.class);

/** version */
public static String VERSION = "jsmud 0.2.2 (2021-07-16)";
public static String VERSION = "jsmud 0.2.3 (2021-07-25)";

/** maximal wait-time in a monitor (this would be infinity in a read JVM) */
private static final AtomicInteger MONITOR_MAX_MILLIS = new AtomicInteger(60000);
Expand Down

0 comments on commit 6da4e9a

Please sign in to comment.