Skip to content

Commit 6d32b5f

Browse files
committed
release 2.2.2
1 parent c642a9f commit 6d32b5f

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![License Apache 2.0](https://img.shields.io/badge/license-Apache%20License%202.0-green.svg)](http://www.apache.org/licenses/LICENSE-2.0)
2-
[![Maven central](https://maven-badges.herokuapp.com/maven-central/com.igormaznitsa/java-prolog-parser/badge.svg)](http://search.maven.org/#artifactdetails|com.igormaznitsa|java-prolog-parser|2.2.1|jar)
2+
[![Maven central](https://maven-badges.herokuapp.com/maven-central/com.igormaznitsa/java-prolog-parser/badge.svg)](http://search.maven.org/#artifactdetails|com.igormaznitsa|java-prolog-parser|2.2.2|jar)
33
[![Java 11.0+](https://img.shields.io/badge/java-8.0%2b-green.svg)](https://bell-sw.com/pages/downloads/#jdk-21-lts)
44
[![PayPal donation](https://img.shields.io/badge/donation-PayPal-cyan.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AHWJHJFBAWGL2)
55
[![YooMoney donation](https://img.shields.io/badge/donation-Yoo.money-blue.svg)](https://yoomoney.ru/to/41001158080699)
@@ -16,6 +16,7 @@ It supports
1616
- line and block commentaries
1717
- underline split numbers
1818
- curly blocks
19+
- get a list of tokens read during a Prolog term extraction
1920

2021
# Maven dependency
2122

@@ -24,7 +25,7 @@ The parser is a pure Java library without any 3-th side dependency, it is publis
2425
<dependency>
2526
<groupId>com.igormaznitsa</groupId>
2627
<artifactId>java-prolog-parser</artifactId>
27-
<version>2.2.1</version>
28+
<version>2.2.2</version>
2829
</dependency>
2930
```
3031

pom.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44

55
<groupId>com.igormaznitsa</groupId>
66
<artifactId>java-prolog-parser</artifactId>
7-
<version>2.2.2-SNAPSHOT</version>
7+
<version>2.2.2</version>
88
<packaging>jar</packaging>
99

1010
<name>Edinburgh Prolog parser</name>
11-
<description>It is a handwritten prolog parser, it allows to parse prolog sources written in Edinburgh Prolog style</description>
11+
<description>It is a handwritten Prolog parser, it allows to parse prolog sources written in Edinburgh Prolog
12+
style
13+
</description>
1214
<url>https://github.com/raydac/java-prolog-parser</url>
1315

1416
<properties>
@@ -65,13 +67,13 @@
6567
<dependency>
6668
<groupId>org.junit.jupiter</groupId>
6769
<artifactId>junit-jupiter-api</artifactId>
68-
<version>5.14.1</version>
70+
<version>6.0.2</version>
6971
<scope>test</scope>
7072
</dependency>
7173
<dependency>
7274
<groupId>org.junit.jupiter</groupId>
7375
<artifactId>junit-jupiter-engine</artifactId>
74-
<version>5.14.1</version>
76+
<version>6.0.2</version>
7577
<scope>test</scope>
7678
</dependency>
7779
<dependency>

0 commit comments

Comments
 (0)