Skip to content

Commit 835266a

Browse files
authored
🚀 Release v1.1.1 (#79)
Minor release that mainly patches the code against newer (> v2.26) phonopy versions, which appear to break the tests. The new AiiDA contributor license agreement is also added, and the old clabot is removed.
1 parent 32bd829 commit 835266a

File tree

4 files changed

+32
-2
lines changed

4 files changed

+32
-2
lines changed

.github/workflows/update_changelog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def update_changelog():
4040
print('🔍 Checking the current version number')
4141
current_changelog = Path('CHANGELOG.md').read_text(encoding='utf-8')
4242

43-
from aiida_quantumespresso import __version__
43+
from aiida_vibroscopy import __version__
4444

4545
if str(__version__) in current_changelog:
4646
print('🛑 Current version already in `CHANGELOG.md`. Skipping...')

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
## v1.1.1
2+
3+
This minor release adds the new AiiDA contributor license agreement (CLA), and its GitHub bot,
4+
along with some dependency contraints for phonopy. The latest versions of phonopy (>v2.26)
5+
break the tests. While figuring out why, we patch this until a solution is found.
6+
7+
### 🐛 Bug fixes
8+
9+
* Deps: constrain phonopy and spglib versions [[3a3e3d1](https://github.com/aiidateam/aiida-quantumespresso/commit/3a3e3d117e34c6a66fcdc74e1e21c6263c203565)]
10+
11+
### 📚 Documentation
12+
13+
* Fix some docstrings and reports [[3ee9e7c](https://github.com/aiidateam/aiida-quantumespresso/commit/3ee9e7cbd2f5e6b8f15229dafbed58ae7ef4fa0d)]
14+
* Update main paper reference[[504c1b7](https://github.com/aiidateam/aiida-quantumespresso/commit/504c1b7b65a8852395d0ff3ec7271cb8c05c6931)]
15+
16+
### 🔧 Maintenance
17+
18+
* CLA: update and remove old cla-bot [[32bd829](https://github.com/aiidateam/aiida-quantumespresso/commit/32bd829987751deba056b7bfa739f6c82cf89d3e)]
19+
* @bastonero has signed the CLA in bastonero/aiida-vibroscopy#78[[e83739f](https://github.com/aiidateam/aiida-quantumespresso/commit/e83739f6aaecfcb304f8cac3da6d54b93f0fafb7)]
20+
* Add the AiiDA CLA [[df2cade](https://github.com/aiidateam/aiida-quantumespresso/commit/df2cade1bf200b8a2dd7004a48e40b118257f134)]
21+
* Add CLA bot [[3ba3e9e](https://github.com/aiidateam/aiida-quantumespresso/commit/3ba3e9e9f094106254b1a8ee4c97b85e66b41f85)]
22+
23+
### ⬆️ Update dependencies
24+
25+
* Deps: constrain phonopy and spglib versions [[3a3e3d1](https://github.com/aiidateam/aiida-quantumespresso/commit/3a3e3d117e34c6a66fcdc74e1e21c6263c203565)]
26+
27+
28+
29+
130
## v1.1.0
231

332
This minor release includes new post-processing utilities, a small breaking change in [[42503f3]](https://github.com/bastonero/aiida-vibroscopy/commit/42503f312d9a812cfc46d4c4a03a78641201e1d3) with regards to reference system for non-analytical and polarization directions. Some examples providing

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ classifiers = [
2121
'Programming Language :: Python :: 3.9',
2222
'Programming Language :: Python :: 3.10',
2323
'Programming Language :: Python :: 3.11',
24+
'Programming Language :: Python :: 3.12',
2425
]
2526
keywords = ['aiida', 'workflows']
2627
requires-python = '>=3.8'

src/aiida_vibroscopy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
# For further information on the license, see the LICENSE.txt file #
88
#################################################################################
99
"""AiiDA plugin for vibrational spectoscopy using Quantum ESPRESSO."""
10-
__version__ = '1.1.0'
10+
__version__ = '1.1.1'

0 commit comments

Comments
 (0)