diff --git a/CHANGES.md b/CHANGES.md index de9694da..18952d91 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,4 @@ -## unreleased +## 0.1.3 (2021-7-22) - Fix crashes when parsing non-UTF8-decodable string literals. - \N escape sequence in string literals will no longer cause a syntax error. diff --git a/dune-project b/dune-project index 1c43f099..50f4eac1 100644 --- a/dune-project +++ b/dune-project @@ -1,6 +1,6 @@ (lang dune 2.8) (name pyre-ast) -(version 0.1.2) +(version 0.1.3) (cram enable) (generate_opam_files true) diff --git a/pyre-ast.opam b/pyre-ast.opam index b19b72f7..9b09b70d 100644 --- a/pyre-ast.opam +++ b/pyre-ast.opam @@ -1,6 +1,6 @@ # This file is generated by dune, edit dune-project instead opam-version: "2.0" -version: "0.1.2" +version: "0.1.3" synopsis: "Full-fidelity Python parser in OCaml" description: "pyre-ast is an OCaml library to parse Python source files into abstract syntax trees. Under the hood, it relies on the CPython parser to do the parsing work and therefore the result is always 100% compatible with the official CPython implementation."