Skip to content

Commit 4f95219

Browse files
committed
Update to new version
1 parent 5c02180 commit 4f95219

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ SequenceExtractor also has python bindings. Using the python wrapper is simple.
4242
has to be imported and the SequenceExtractor object has to be initialized given the path to the jar
4343
of the library and the options to keep function call types (<code>keep_function_call_types</code>)
4444
and keep literals (<code>keep_literals</code>):
45-
<pre><code>sequence_extractor = SequenceExtractor("path/to/SequenceExtractor-0.2.jar", False, False, True, False, True)</code></pre>
45+
<pre><code>sequence_extractor = SequenceExtractor("path/to/SequenceExtractor-0.3.jar", False, False, True, False, True)</code></pre>
4646
After that, you can parse snippets as follows:
4747
<pre><code>sequence = sequence_extractor.parse_snippet(
4848
"JFrame frame = new JFrame(\"myframe\");\n" +

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>SequenceExtractor</groupId>
66
<artifactId>SequenceExtractor</artifactId>
7-
<version>0.2</version>
7+
<version>0.3</version>
88

99
<properties>
1010
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

srcpy/sequenceextractor_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
if __name__ == '__main__':
44
'''Used as a test for the python bindings'''
5-
sequence_extractor = SequenceExtractor("../target/SequenceExtractor-0.2.jar")
5+
sequence_extractor = SequenceExtractor("../target/SequenceExtractor-0.3.jar")
66
sequence = sequence_extractor.parse_snippet(
77
"JFrame frame = new JFrame(\"myframe\");\n" +
88
"JPanel panel = new JPanel();\n" +

0 commit comments

Comments
 (0)