Skip to content

Commit

Permalink
update README for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Steen committed Feb 3, 2023
1 parent 6b31725 commit 5116d3b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ constantly being updated to follow more recent developments.
## Install
[![Maven Central](https://img.shields.io/maven-central/v/io.github.leoprover/scala-tptp-parser_2.13.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22io.github.leoprover%22%20AND%20a:%22scala-tptp-parser_2.13%22)

The Scala TPTP parser is available on [Maven Central](https://search.maven.org/artifact/io.github.leoprover/scala-tptp-parser_2.13) (current version: 1.6.4).
The Scala TPTP parser is available on [Maven Central](https://search.maven.org/artifact/io.github.leoprover/scala-tptp-parser_2.13) (current version: 1.6.5).
Snapshots are available on [Sonatype](https://s01.oss.sonatype.org/content/repositories/snapshots/io/github/leoprover/scala-tptp-parser_2.13/).

### Maven
Expand All @@ -31,15 +31,15 @@ In order to include `scala-tptp-parser` into your project via Maven, just add th
<dependency>
<groupId>io.github.leoprover</groupId>
<artifactId>scala-tptp-parser_2.13</artifactId>
<version>1.6.4</version>
<version>1.6.5</version>
</dependency>
```

### sbt

In order to include `scala-tptp-parser` into your project via SBT, just add the following dependency to your `build.sbt`:
```scala
libraryDependencies += "io.github.leoprover" %% "scala-tptp-parser" % "1.6.4"
libraryDependencies += "io.github.leoprover" %% "scala-tptp-parser" % "1.6.5"
```

### Non-sbt-projects
Expand Down Expand Up @@ -90,6 +90,7 @@ try {

## Version history

- 1.6.5: Fix usage of single-quoted identifiers that start with $ (or $$). Now the single quotes are retained in the functor name (in the AST) if the name is not a TPTP lower word. So the functor with name (as string) "$true" is not equal to "'$true'", as it should be (note the single quotes in the second variant). Single quotes are stripped automatically, if they are not necessary (i.e., parsing "'abc'" will produce functor "abc" without single quotes).
- 1.6.4: Fix TFF NCL pretty printing: Include introduced `@` signs introduced by 1.6.3.
- 1.6.3: Change first-order NCL syntax according to PAAR paper (introducing @ sign in TFF). Fix pretty printing of NCL operators.
- 1.6.2: Minor update to remove parentheses around meta equalities in TFX.
Expand Down

0 comments on commit 5116d3b

Please sign in to comment.