qasm-ts 2.1.0 → 2.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CITATION.cff +34 -0
  2. package/package.json +1 -1
  3. package/readme.md +26 -12
package/CITATION.cff ADDED
@@ -0,0 +1,34 @@
1
+ cff-version: "1.2.0"
2
+ authors:
3
+ - family-names: Kim
4
+ given-names: Sean
5
+ orcid: "https://orcid.org/0009-0006-1223-1895"
6
+ - family-names: Edwards
7
+ given-names: Marcus
8
+ orcid: "https://orcid.org/0000-0001-6591-9585"
9
+ doi: 10.5281/zenodo.17144767
10
+ message: If you use this software, please cite our article in the
11
+ Journal of Open Source Software.
12
+ preferred-citation:
13
+ authors:
14
+ - family-names: Kim
15
+ given-names: Sean
16
+ orcid: "https://orcid.org/0009-0006-1223-1895"
17
+ - family-names: Edwards
18
+ given-names: Marcus
19
+ orcid: "https://orcid.org/0000-0001-6591-9585"
20
+ date-published: 2025-09-17
21
+ doi: 10.21105/joss.08696
22
+ issn: 2475-9066
23
+ issue: 113
24
+ journal: Journal of Open Source Software
25
+ publisher:
26
+ name: Open Journals
27
+ start: 8696
28
+ title: Enabling the Verification and Formalization of Hybrid
29
+ Quantum-Classical Computing with OpenQASM 3.0 compatible QASM-TS 2.0
30
+ type: article
31
+ url: "https://joss.theoj.org/papers/10.21105/joss.08696"
32
+ volume: 10
33
+ title: Enabling the Verification and Formalization of Hybrid
34
+ Quantum-Classical Computing with OpenQASM 3.0 compatible QASM-TS 2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qasm-ts",
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
4
4
  "description": "QASM, the low-level programming language for quantum circuit specification, implemented in TypeScript.",
5
5
  "main": "dist/main.js",
6
6
  "scripts": {
package/readme.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # QASM TypeScript
2
2
 
3
3
  ![NPM Downloads](https://img.shields.io/npm/dy/qasm-ts)
4
+ [![DOI](https://joss.theoj.org/papers/10.21105/joss.08696/status.svg)](https://doi.org/10.21105/joss.08696)
4
5
 
5
6
 
6
7
  OpenQASM, the low-level programming language for quantum circuit specification, implemented in TypeScript.
@@ -11,9 +12,18 @@ The package is aimed at enabling implementations of verification and validation
11
12
 
12
13
  Language documentation is provided by IBM [here](https://openqasm.com).
13
14
 
14
- ## New in Version 2.0.0
15
+ ## New in Version 2.1.0
16
+
17
+ This release includes several improvements made during the review of the repo by reviewers from the Journal of Open Source Software. These improvements include:
18
+
19
+ - more examples in documentation
20
+ - easier navigation in the documentation
21
+ - files like CONTRIBUTING and LICENSE
22
+ - fix for the compatibility of the test suite with Windows
23
+ - documentation on how to run our benchmarks
24
+ - improvements to the README
25
+ - etc.
15
26
 
16
- - Support for the OpenQASM 3.0 spec while retaining OpenQASM 2.0 backwards compatibility.
17
27
 
18
28
  ## Usage
19
29
 
@@ -44,7 +54,7 @@ The parser is able to recognize and handle 19 distinct types of syntax errors, w
44
54
  exported in `errors.ts`. While this is not an advanced semantic or static analysis, it should enable
45
55
  users to basically validate their OpenQASM 2.0 or 3.0 code.
46
56
 
47
- Comprehensive API docs can be found in the `docs/` directory.
57
+ Comprehensive API docs can be found in the `docs/` directory, and the docs are hosted online [here](https://marcusedwards.me/qasm-ts).
48
58
 
49
59
  ## Example I/O
50
60
 
@@ -177,16 +187,20 @@ Unless required by applicable law or agreed to in writing, software distributed
177
187
 
178
188
  ## How to Cite
179
189
 
180
- If you are using QASM-TS for research we appreciate any citations. Please read and cite our pre-print at https://arxiv.org/abs/2412.12578.
190
+ If you are using QASM-TS for research we appreciate any citations. Please read and cite our [paper](https://doi.org/10.21105/joss.08696) published with the Journal of Open Source Software.
181
191
 
182
192
  ```
183
- @misc{kim2024enablingverificationformalizationhybrid,
184
- title={Enabling the Verification and Formalization of Hybrid Quantum-Classical Computing with OpenQASM 3.0 compatible QASM-TS 2.0},
185
- author={Sean Kim and Marcus Edwards},
186
- year={2024},
187
- eprint={2412.12578},
188
- archivePrefix={arXiv},
189
- primaryClass={cs.PL},
190
- url={https://arxiv.org/abs/2412.12578},
193
+ @article{Kim[2025,
194
+ doi = {10.21105/joss.08696},
195
+ url = {https://doi.org/10.21105/joss.08696},
196
+ year = {2025},
197
+ publisher = {The Open Journal},
198
+ volume = {10},
199
+ number = {113},
200
+ pages = {8696},
201
+ author = {Kim[, Sean and Edwards[, Marcus},
202
+ title = {Enabling the Verification and Formalization of Hybrid Quantum-Classical Computing with OpenQASM 3.0 compatible QASM-TS 2.0},
203
+ journal = {Journal of Open Source Software}
191
204
  }
205
+
192
206
  ```