From 07998e061535e1e7baee6ac7b9d4ded3679a7825 Mon Sep 17 00:00:00 2001 From: Jia Chen Date: Mon, 8 Jul 2024 13:38:22 -0700 Subject: [PATCH] Cut release 0.1.11 for the async def fix --- CHANGES.md | 4 ++++ dune-project | 2 +- pyre-ast.opam | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index fcaaa8e..eb641ad 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +## 0.1.11 (2024-7-8) + +- Fixed a major bug in 0.1.10 where the parser cannot differentiate `async def` and `def`. + ## 0.1.10 (2024-6-17) - Bump the bundled CPython version to 3.12.3 diff --git a/dune-project b/dune-project index a793d05..fdaed75 100644 --- a/dune-project +++ b/dune-project @@ -1,6 +1,6 @@ (lang dune 2.8) (name pyre-ast) -(version 0.1.10) +(version 0.1.11) (cram enable) (generate_opam_files true) diff --git a/pyre-ast.opam b/pyre-ast.opam index 7c85b34..96e8956 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.10" +version: "0.1.11" 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."