From 6f2d2881bac69cd717bf70d5c8992e414c85d1ca Mon Sep 17 00:00:00 2001 From: Kartik Singhal Date: Mon, 11 Jul 2022 09:27:39 -0500 Subject: [PATCH] Prep to release v0.4.0 --- CHANGES.md | 12 ++++++++++-- LICENSE | 2 +- README.md | 4 ++++ 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index fa7bb22..b24d289 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,13 @@ -#### v0.3.0 (2020-01-16) +# Changelog + +## v0.4.0 (2022-07-11) + +- Close channel after parsing [#2](https://github.com/inQWIRE/openqasm-parser/pull/2) + +## v0.3.0 (2020-01-16) + - Switch to MIT license -#### v0.2.0 (2020-01-15) +## v0.2.0 (2020-01-15) + - Initial public release diff --git a/LICENSE b/LICENSE index d088131..74f7725 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 Kartik Singhal +Copyright (c) 2020--2022 Kartik Singhal Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 205494f..c84ea75 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ OCaml library for manipulating [OpenQASM](https://github.com/Qiskit/openqasm) Abstract Syntax Tree ## Requirements + This library requires a recent version of OCaml, `dune` and `menhir`. ## Installation @@ -24,11 +25,14 @@ OpenQASM.get_ast "teleport.qasm";; ``` ## Links + - [Package and module documentation](https://inqwire.github.io/openqasm-parser/openQASM/OpenQASM/) - [Package listing on opam repository](https://opam.ocaml.org/packages/openQASM/) ## Contributing + Pull requests are welcome. ## License + [MIT](https://choosealicense.com/licenses/mit/)