Skip to content

Commit

Permalink
🚀 RELEASE: v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mbercx committed Mar 14, 2022
1 parent 91bcd98 commit 625ff79
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

## v0.1.0 - 2022-03-14

Minor release with the first code refactoring features for migrating plugins to `aiida-core` v2.0.

### New ✨

- Basic addition of `core.` prefix to deprecated entry points. [[#3]](https://github.com/aiidateam/aiida-upgrade/pull/3)
- Add Transformer for removing `dict` and `list` keywords from `Dict` and `List` inititalizations. [[#4]](https://github.com/aiidateam/aiida-upgrade/pull/4)
4 changes: 2 additions & 2 deletions aiida_upgrade/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""A tool to aide upgrades of plugins to new aiida-core versions."""
"""A tool to perform upgrades of AiiDA plugins to new aiida-core versions."""

__version__ = "0.0.2"
__version__ = "0.1.0"
5 changes: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,10 @@ tests = [
"pytest",
]

[tool.flit.sdist]
exclude = [
"tests/",
]

[tool.isort]
profile = "black"

0 comments on commit 625ff79

Please sign in to comment.