qasm-ts 2.1.0 → 2.1.1

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 (2) hide show
  1. package/package.json +1 -1
  2. package/readme.md +11 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qasm-ts",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
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
@@ -11,9 +11,18 @@ The package is aimed at enabling implementations of verification and validation
11
11
 
12
12
  Language documentation is provided by IBM [here](https://openqasm.com).
13
13
 
14
- ## New in Version 2.0.0
14
+ ## New in Version 2.1.0
15
+
16
+ This release includes several improvements made during the review of the repo by reviewers from the Journal of Open Source Software. These improvements include:
17
+
18
+ - more examples in documentation
19
+ - easier navigation in the documentation
20
+ - files like CONTRIBUTING and LICENSE
21
+ - fix for the compatibility of the test suite with Windows
22
+ - documentation on how to run our benchmarks
23
+ - improvements to the README
24
+ - etc.
15
25
 
16
- - Support for the OpenQASM 3.0 spec while retaining OpenQASM 2.0 backwards compatibility.
17
26
 
18
27
  ## Usage
19
28