Skip to content

Commit 539b66d

Browse files
QDK/Chemistry v1.0.1 (#345)
1 parent 47fbf42 commit 539b66d

7 files changed

Lines changed: 12 additions & 6 deletions

File tree

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ python -m pip install qdk-chemistry
3030

3131
The pip installation of QDK/Chemistry currently has the following system requirements:
3232

33-
- Python 3.10 - 3.13
33+
- Python 3.10+
3434
- OS Support:
3535
- Windows via [the Windows Subsystem for Linux (WSL)](https://learn.microsoft.com/windows/wsl/install)
3636
- x86_64

cpp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.15)
2-
project(qdk VERSION 1.0.0 LANGUAGES CXX C)
2+
project(qdk VERSION 1.0.1 LANGUAGES CXX C)
33
set(CMAKE_CXX_STANDARD 20)
44
set(CMAKE_CXX_STANDARD_REQUIRED ON)
55

docs/source/changelog.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
Changelog
33
=========
44

5+
Version 1.0.1
6+
=============
7+
8+
- Added support for Python 3.10
9+
- Enhanced INSTALL.md with clearer installation steps
10+
511
Version 1.0.0
612
=============
713

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
project = "qdk-chemistry"
1919
copyright = "Microsoft Corporation. All rights reserved. Licensed under the MIT License"
2020
author = "QDK/Chemistry Team"
21-
release = "1.0.0"
21+
release = "1.0.1"
2222

2323
# -----------------------------------------------------------------------------
2424
# Perform initial setup and tests

python/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.15)
2-
project(qdk_chemistry_python VERSION 1.0.0 LANGUAGES CXX)
2+
project(qdk_chemistry_python VERSION 1.0.1 LANGUAGES CXX)
33

44
# Set default build type to Release if not specified
55
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dependencies = [
4545
]
4646
description = "Quantum Development Kit - Chemistry Library"
4747
license = { file = "LICENSE.txt" }
48-
version = "1.0.0"
48+
version = "1.0.1"
4949
name = "qdk-chemistry"
5050
readme = "README.md"
5151
requires-python = ">=3.10"

python/src/qdk_chemistry/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Licensed under the MIT License. See LICENSE.txt in the project root for license information.
66
# --------------------------------------------------------------------------------------------
77

8-
__version__ = "1.0.0"
8+
__version__ = "1.0.1"
99

1010
import contextlib
1111
import os

0 commit comments

Comments
 (0)