Skip to content

Commit dcf5455

Browse files
authored
Merge pull request #275 from SCM-NV/release
REL: Release QMFlows 0.11.0
2 parents f53ed90 + 0adcae3 commit dcf5455

File tree

5 files changed

+39
-8
lines changed

5 files changed

+39
-8
lines changed

.github/workflows/pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ jobs:
3131
uses: pypa/gh-action-pypi-publish@master
3232
with:
3333
user: __token__
34-
password: ${{ secrets.PYPI_TOKEN }}
34+
password: ${{ secrets.QMFLOWS_PYPI }}

CHANGELOG.md

Lines changed: 34 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,39 @@
1-
# Version 0.10.5 (Unreleased)
1+
# Version 0.11.1 (Unreleased)
22

33
## New
4-
* Read molecular orbitals from unrestricted calculations (#211)
4+
* n.a.
5+
6+
7+
# Version 0.11.0 (17/11/2021)
8+
9+
## New
10+
* Add support for reading CP2K MOs from unrestricted calculations.
11+
* Add support for reading CP2K >=8.2 MOs.
12+
* Add a template for (CP2K) cell optimizations: ``qmflows.cell_opt``.
13+
* Add a generic keyword for the CP2K GAL19 non-bonded forcefield.
14+
* Add 6 new generic properties to ``qmflows.cp2k`` and ``qmflows.cp2k_mm`` outputs:
15+
* ``volume``
16+
* ``forces``
17+
* ``coordinates``
18+
* ``temperature``
19+
* ``lattice``
20+
* ``pressure``
21+
22+
## Changed
23+
* Make ``qmflows.Package`` instance more compatible with builtin functions.
24+
* Remove the unused ``__block_replace`` functionality.
25+
* Remove the cell parameters from the ``qmflows.cp2k_mm`` templates.
26+
* Remove the 2-digit restriction from CP2K cell parameters.
27+
* Check for duplicate keys when parsing .yaml inputs.
28+
* QMFlows templates are now always copied when getting them (requires Python >= 3.7).
29+
* Make RDKit an optional dependency (requires Python >= 3.7).
530

631
## Fix
7-
* Solve CP2K molecular orbital parsing issue (#212)
32+
* Fix the ``ResultWrapper`` parameters being ordered incorrectly.
33+
* Fix ``qmflows.cp2m_mm`` ignoring the ``executable`` key.
34+
* Fix ``qmflows.InitRestart`` failing on consecutive calls.
35+
* Fix ``qmflows.CP2KMM_Result`` not inheriting from ``qmflows.CP2K_Result``.
36+
* Remove usage of the CP2K ``USE_ELEMENT_AS_KIND`` keyword.
837

938

1039
# Version 0.10.4 (07/09/2020)
@@ -14,6 +43,7 @@
1443
## Fix
1544
* Improve CP2K error reporting (#209)
1645

46+
1747
# Version 0.10.3 (12/06/2020)
1848

1949
## New
@@ -37,6 +67,7 @@
3767
* Exchanged ``plams.init()`` / ``plams.finish()`` for ``qmflows.InitRestart`` in the ``qmflows.run()`` function.
3868
* Store the ``cache.db`` file in the PLAMS working directory.
3969

70+
4071
# Version 0.10.0 (XX/03/2020)
4172

4273
## Added

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Package installation
9090
Finally install the package:
9191

9292
- Install **QMFlows** using pip:
93-
- ``pip install git+https://github.com/SCM-NV/qmflows@master#egg=qmflows``
93+
- ``pip install qmflows``
9494

9595
Now you are ready to use *qmflows*.
9696

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@
6868
# built documents.
6969
#
7070
# The short X.Y version.
71-
version = '0.10'
71+
version = '0.11'
7272
# The full version, including alpha/beta/rc tags.
73-
release = '0.10.3'
73+
release = '0.11.0'
7474

7575
# The language for content autogenerated by Sphinx. Refer to documentation
7676
# for a list of supported languages.

src/qmflows/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""The QMFlows version."""
22

3-
__version__ = "0.10.5"
3+
__version__ = "0.11.0"

0 commit comments

Comments
 (0)