-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #182 from QuTech-Delft/release-0.5.0
Release 0.5.0
- Loading branch information
Showing
16 changed files
with
91 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
This project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [ 0.5.0 ] - [ 2023-12-16 ] | ||
|
||
### Added | ||
|
||
- cQasm 3.0 parser. MVP (Minimum Viable Product) implemented. Extended v3 is a WIP. | ||
- Conan as package manager. | ||
- res folder for resources. | ||
|
||
### Changed | ||
|
||
- Different upgrades: C++20, CMake 3.12, Python 3.8 to 3.12. | ||
- GitHub workflows and jobs. | ||
- File reorganization to accommodate v3 parser: v10, v1x, and v3x folders. tests folder is now called test. | ||
|
||
### Removed | ||
|
||
- Git submodules. | ||
- GitHub Conda job. | ||
- CMake folder. |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
include(tests-debug) | ||
|
||
[settings] | ||
compiler=clang | ||
compiler.version=14 | ||
|
||
[conf] | ||
tools.build:cxxflags=["-stdlib=libc++"] | ||
tools.build:compiler_executables={ 'c' : 'clang', 'cpp' : 'clang++' } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
include(tests-release) | ||
|
||
[settings] | ||
compiler=clang | ||
compiler.version=14 | ||
|
||
[conf] | ||
tools.build:cxxflags=["-stdlib=libc++"] | ||
tools.build:compiler_executables={ 'c' : 'clang', 'cpp' : 'clang++' } |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#pragma once | ||
|
||
#define LIBQASM_VERSION "0.4.1" | ||
#define LIBQASM_VERSION "0.5.0" | ||
#define LIBQASM_RELEASE_YEAR "2023" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters