Skip to content

Commit 625ff79

Browse files
committed
🚀 RELEASE: v0.1.0
1 parent 91bcd98 commit 625ff79

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Changelog
2+
3+
## v0.1.0 - 2022-03-14
4+
5+
Minor release with the first code refactoring features for migrating plugins to `aiida-core` v2.0.
6+
7+
### New ✨
8+
9+
- Basic addition of `core.` prefix to deprecated entry points. [[#3]](https://github.com/aiidateam/aiida-upgrade/pull/3)
10+
- Add Transformer for removing `dict` and `list` keywords from `Dict` and `List` inititalizations. [[#4]](https://github.com/aiidateam/aiida-upgrade/pull/4)

aiida_upgrade/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
"""A tool to aide upgrades of plugins to new aiida-core versions."""
1+
"""A tool to perform upgrades of AiiDA plugins to new aiida-core versions."""
22

3-
__version__ = "0.0.2"
3+
__version__ = "0.1.0"

pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,10 @@ tests = [
2525
"pytest",
2626
]
2727

28+
[tool.flit.sdist]
29+
exclude = [
30+
"tests/",
31+
]
32+
2833
[tool.isort]
2934
profile = "black"

0 commit comments

Comments
 (0)