From 3ca66a6a4b70e0208b5701af4785762f85a15276 Mon Sep 17 00:00:00 2001 From: rturrado <68099809+rturrado@users.noreply.github.com> Date: Thu, 28 Mar 2024 16:05:15 +0100 Subject: [PATCH] Update version.hpp and CHANGELOG.md. .github/workflows/test.yml on/push/branches includes master. --- .github/workflows/test.yml | 1 + CHANGELOG.md | 36 +++--------------------------------- include/version.hpp | 2 +- 3 files changed, 5 insertions(+), 34 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e2011c32..e408f1f7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,6 +4,7 @@ on: push: branches: - develop + - master pull_request: jobs: diff --git a/CHANGELOG.md b/CHANGELOG.md index cfb5d84c..c863841f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,48 +3,18 @@ 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 ] +## [ 0.6.0 ] - [ 2024-03-28 ] ### Added -- cQasm 3.0 parser: implemented variable declaration and initialization for `bool`, `int`, and `float` - (simple and array), and `axis` types. - -### 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 - -### Changed - -- Fixed `upload-release-asset` steps in `.github/workflow/assets.yml`. -- Updated `RELEASE.md`. - -### Removed - -## [ 0.5.0 ] - [ 2023-12-16 ] - -### Added - -- cQasm 3.0 parser. MVP (Minimum Viable Product) implemented. Extended v3 is a WIP. +- cQasm 3.0 parser. MVP (Minimum Viable Product) implemented. - 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 +- cQasm 1.x support. - Git submodules. -- GitHub Conda job. -- CMake folder. diff --git a/include/version.hpp b/include/version.hpp index 0d026fcb..ade0fd56 100644 --- a/include/version.hpp +++ b/include/version.hpp @@ -1,6 +1,6 @@ #pragma once -#define LIBQASM_VERSION "0.5.2" +#define LIBQASM_VERSION "0.6.0" #define LIBQASM_RELEASE_YEAR "2024" #include