Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- **Fixed** for any bug fixes.
- **Removed** for now removed features.

## [ M.m.P ] - [ yyyy-mm-dd ]
## [ 1.3.0 ] - [ 2026-03-23 ]

### Added
- `U`, `Z90`, and `mZ90` unitary instructions.
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 = "1.2.1"
let expected_output = "1.3.0"
console.log("\nThe version of libqasm compiled with emscripten is:", output);
if (output !== expected_output) {
console.log("\tExpected output:", expected_output)
Expand Down
4 changes: 2 additions & 2 deletions include/libqasm/versioning.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace cqasm {

static const char* version{ "1.2.1" };
static const char* release_year{ "2025" };
static const char* version{ "1.3.0" };
static const char* release_year{ "2026" };

[[nodiscard]] [[maybe_unused]] static const char* get_version() {
return version;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "libqasm",
"version": "1.2.1",
"version": "1.3.0",
"repository": {
"type": "git",
"url": "https://github.com/QuTech-Delft/libqasm.git"
Expand Down
Loading