From 8c93a5f1799a95c5bbb80228bfd083aa3cccbd49 Mon Sep 17 00:00:00 2001
From: pablolh
Date: Thu, 18 Jan 2024 16:01:56 +0100
Subject: [PATCH] Release 0.5.2
- Variable declaration and initialization in cqasm v3 parser
- New types in v3: bool, int, float, axis
- Arrays in v3
- v3x::AnalyzeTreeGenAstVisitor is an instance of tree-gen generated visitor base class
- msvc-runtime pip dependency on Windows
---
CHANGELOG.md | 15 +++++++++++++++
include/version.hpp | 2 +-
2 files changed, 16 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 18d3303e..dc103aa3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,21 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
+## [ 0.5.2 ] - [ 2024-01-18 ]
+
+### Added
+- Variable declaration and initialization in cqasm v3 parser
+- New types in v3: bool, int, float, axis
+- Arrays in v3
+
+### Changed
+
+- v3x::AnalyzeTreeGenAstVisitor is an instance of tree-gen generated visitor base class
+
+### Removed
+
+- msvc-runtime pip dependency on Windows
+
## [ 0.5.1 ] - [ 2024-01-08 ]
### Added
diff --git a/include/version.hpp b/include/version.hpp
index 597208d3..ac60c444 100644
--- a/include/version.hpp
+++ b/include/version.hpp
@@ -1,4 +1,4 @@
#pragma once
-#define LIBQASM_VERSION "0.5.1"
+#define LIBQASM_VERSION "0.5.2"
#define LIBQASM_RELEASE_YEAR "2024"