Skip to content

Commit

Permalink
Merge pull request #248 from QuTech-Delft/fix-update-master-to-releas…
Browse files Browse the repository at this point in the history
…e-0.6.7

Fix update master to release 0.6.7
  • Loading branch information
rturrado authored Aug 26, 2024
2 parents 6897f16 + e54b19b commit 2babf23
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 8 deletions.
20 changes: 17 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).


## [ 0.6.7 ] - [ 2024-05-30 ]

### Added
- `pyproject.toml`.
- GitHub pages.

### Changed
- Fix building of tests in Conan profiles and `setup.py`.
- Fix Python MacOS/x64 (with Python > 3.11) packages.
- Fix deserialization of CBOR strings.

### Removed
- Python 3.8 packages generation.

## [ 0.6.6 ] - [ 2024-05-14 ]

### Added
Expand All @@ -26,8 +40,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added

### Changed
- Updated emscripten compilation flags.
- Changed GitHub Actions `js-emscripten-wasm` job to work with `deno` instead of `node`.
- Update emscripten compilation flags.
- Change GitHub Actions `js-emscripten-wasm` job to work with `deno` instead of `node`.

### Removed

Expand All @@ -37,7 +51,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added

### Changed
- Fixed CMake install.
- Fix CMake install.
- `generate_antlr_parser.py` writes output include files in a given `include` folder.

### Removed
Expand Down
2 changes: 1 addition & 1 deletion doc/src/dev-guide/cpp.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The following line will also build and cache the `libqasm` Conan package.

```shell
conan profile detect
conan create --version 0.6.6 . -pr:a=tests-debug -b missing
conan create --version 0.6.7 . -pr:a=tests-debug -b missing
```

You can test the C++ binaries:
Expand Down
4 changes: 2 additions & 2 deletions doc/src/user-guide/cpp.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ libQASM can be requested as a Conan package from a `conanfile.py`.

```
def build_requirements(self):
self.tool_requires("libqasm/0.6.6")
self.tool_requires("libqasm/0.6.7")
def requirements(self):
self.requires("libqasm/0.6.6")
self.requires("libqasm/0.6.7")
```

And then linked against from a `CMakeLists.txt`:
Expand Down
2 changes: 1 addition & 1 deletion emscripten/test_libqasm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ wrapper().then(function(result: any) {

try {
let output = cqasm.get_version()
let expected_output = "0.6.6"
let expected_output = "0.6.7"
console.log("\nThe version of libqasm compiled with emscripten is:", output);
if (output !== expected_output) {
console.log("\tExpected output:", expected_output)
Expand Down
2 changes: 1 addition & 1 deletion include/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace cqasm {

static const char *version{ "0.6.6" };
static const char *version{ "0.6.7" };
static const char *release_year{ "2024" };

[[nodiscard]] [[maybe_unused]] static const char *get_version() {
Expand Down

0 comments on commit 2babf23

Please sign in to comment.