Skip to content

Commit c0cee65

Browse files
prepare next release
Signed-off-by: Francesco Fuggitti <francesco.fuggitti@gmail.com>
1 parent 3540af9 commit c0cee65

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

CHANGES.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## 0.0.4 (2023-07-07)
4+
5+
* Fix the grounding process of formulas.
6+
* Improve the english translation of formula templates.
7+
* Update Pipfile.lock.
8+
* Add ICAPS reference.
9+
310
## 0.0.3 (2023-06-13)
411

512
Main changes:

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -144,4 +144,15 @@ and then go to [http://localhost:8000](http://localhost:8000)
144144
url_code = {https://github.com/IBM/nl2ltl},
145145
}
146146
```
147+
and
148+
```
149+
@inproceedings{icaps2023fc,
150+
author = {Francesco Fuggitti and Tathagata Chakraborti},
151+
title = {{NL2LTL} -- A Python Package for Converting Natural Language ({NL}) Instructions to Linear Temporal Logic ({LTL}) Formulas},
152+
booktitle = {{ICAPS}},
153+
year = {2023},
154+
note = {System Demonstration.},
155+
url_code = {https://github.com/IBM/nl2ltl},
156+
}
157+
```
147158

nl2ltl/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
"""From Natural Language to Linear-time Temporal Logic on Finite Traces."""
44

5-
__version__ = "0.0.3"
5+
__version__ = "0.0.4"
66

77
from .core import translate # noqa: F401

0 commit comments

Comments
 (0)