Skip to content

Commit

Permalink
Version 4.3.3 (#160)
Browse files Browse the repository at this point in the history
* Version 4.3.3

* Update engines.hpp
  • Loading branch information
vsoftco authored Aug 8, 2023
1 parent 82535a4 commit d6dd53b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Pre-release
Version 4.3.3 - 8 August 2023
- Minor bugfix in pyqpp setup.py that prevented pip install from remote
- Bug fix in qpp::QEngine::execute() that prevented setting the initial
state of the engine to a custom state
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.15)
set(QPP_VERSION_NUM 4.3.2)
set(QPP_VERSION_NUM 4.3.3)
set(QPP_VERSION_STR "${QPP_VERSION_NUM}")
project(qpp VERSION ${QPP_VERSION_NUM} LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 17)
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PROJECT_NAME = Quantum++
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = v4.3.2
PROJECT_NUMBER = v4.3.3

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Quantum++

## Version 4.3.2 - 12 June 2023
## Version 4.3.3 - 8 August 2023

[![GitHub actions](https://github.com/softwareqinc/qpp/actions/workflows/cmake.yml/badge.svg)](https://github.com/softwareQinc/qpp/actions)

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Version 4.3.2 - 12 June 2023
Version 4.3.3 - 8 August 2023
2 changes: 1 addition & 1 deletion include/classes/circuits/engines.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ class QEngine : public IDisplay, public IJSON {
if (psi.has_value()) {
idx D = static_cast<idx>(std::llround(
std::pow(qc_ptr_->get_d(), qc_ptr_->get_nq())));
if (psi.value().rows() != D) {
if (static_cast<idx>(psi.value().rows()) != D) {
if (static_cast<idx>(psi.value().rows()) != D)
throw exception::DimsNotEqual(
"qpp::QEngine::state_::reset()", "psi");
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pyqpp"
version = "4.3.2"
version = "4.3.3"
description = "Python 3 wrapper for Quantum++"
authors = [
{ name = "softwareQ Inc.", email = "info@softwareq.ca" },
Expand Down

0 comments on commit d6dd53b

Please sign in to comment.