Skip to content

Commit

Permalink
Release v1.0.0b2 (#2728)
Browse files Browse the repository at this point in the history
  • Loading branch information
sphuber authored Apr 9, 2019
1 parent ed6ea1b commit 0b2a3a3
Show file tree
Hide file tree
Showing 11 changed files with 83 additions and 10 deletions.
16 changes: 8 additions & 8 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,22 +34,22 @@ Former members of the AiiDA team

Contributors
############
We would like to thank the following people for their contibution
We would like to thank the following people for their contibution
(beside generic comments and bugfixes):

* Valentin Bersier (EPFL, Switzerland): for the early version of the
* Valentin Bersier (EPFL, Switzerland): for the early version of the
AiiDA web interface
* Jocelyn Boullier (EPFL, Switzerland): for the first version of the
* Jocelyn Boullier (EPFL, Switzerland): for the first version of the
SQLAlchemy implementation
* Jens Bröder: (FZ Jülich, Germany) contributions to the workflow engine
* Marco Dorigo (ICAMS, Germany): for the SGE scheduler plugin
* Marco Gibertini: for the Quantum ESPRESSO plugin for the NEB code and
* Marco Gibertini: for the Quantum ESPRESSO plugin for the NEB code and
the extension of the PW plugin to the ENVIRON code
* Dominik Gresch (ETHZ): for the caching mechanism and contributions to the workflow engine
* Eric Hontz (MIT, USA): for the Quantum Espresso pwimmigrant plugin
* Daniel Marchand (EPFL, Switzerland): for the Quantum ESPRESSO plugins
* Daniel Marchand (EPFL, Switzerland): for the Quantum ESPRESSO plugins
for PP, PROJWFC, and the first version of the Wannier90 plugin
* Tiziano Müller (ETHZ, Switzerland): for the first implementation of
* Tiziano Müller (ETHZ, Switzerland): for the first implementation of
the new plugin system (developed in 2017) and making the code python 3 compatible
* Phillippe Schwaller (EPFL, Switzerland): for the ICSD importer

Expand All @@ -58,9 +58,9 @@ corrections and improvements to the documentation and useful suggestions:

Ivano E. Castelli, Ian Lee, Gianluca Prandini, Jianxing Huang, Antimo Marrazzo, Nicola Varini, Mario Zic,
Vladimir Dikan, Michael Atambo, Ole Schütt, Y.-W. Fang, Philipp Rüßmann, Bonan Zhu, Andreas Stamminger, Keija Cui,
Daniel Hollas, Jianxing Huang, Espen Flage-Larsen
Daniel Hollas, Jianxing Huang, Espen Flage-Larsen, Chris Sewell

---

Please, don't hesitate to contact the AiiDA team if you see that
Please, don't hesitate to contact the AiiDA team if you see that
information is wrong or missing in this file.
2 changes: 1 addition & 1 deletion aiida/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
__copyright__ = (u'Copyright (c), This file is part of the AiiDA platform. '
u'For further information please visit http://www.aiida.net/. All rights reserved.')
__license__ = 'MIT license, see LICENSE.txt file.'
__version__ = '1.0.0b1'
__version__ = '1.0.0b2'
__authors__ = 'The AiiDA team.'
__paper__ = (u'G. Pizzi, A. Cepellotti, R. Sabatini, N. Marzari, and B. Kozinsky,'
u'"AiiDA: automated interactive infrastructure and database for computational science", '
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# -*- coding: utf-8 -*-
###########################################################################
# Copyright (c), The AiiDA team. All rights reserved. #
# This file is part of the AiiDA code. #
# #
# The code is hosted on GitHub at https://github.com/aiidateam/aiida_core #
# For further information on the license, see the LICENSE.txt file #
# For further information please visit http://www.aiida.net #
###########################################################################
# pylint: disable=invalid-name,too-few-public-methods
"""Remove `DbComputer.enabled`"""
from __future__ import division
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# -*- coding: utf-8 -*-
###########################################################################
# Copyright (c), The AiiDA team. All rights reserved. #
# This file is part of the AiiDA code. #
# #
# The code is hosted on GitHub at https://github.com/aiidateam/aiida_core #
# For further information on the license, see the LICENSE.txt file #
# For further information please visit http://www.aiida.net #
###########################################################################
# pylint: disable=invalid-name,too-few-public-methods
"""Remove legacy workflow."""
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals

from __future__ import absolute_import
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# -*- coding: utf-8 -*-
###########################################################################
# Copyright (c), The AiiDA team. All rights reserved. #
# This file is part of the AiiDA code. #
# #
# The code is hosted on GitHub at https://github.com/aiidateam/aiida_core #
# For further information on the license, see the LICENSE.txt file #
# For further information please visit http://www.aiida.net #
###########################################################################
# pylint: disable=invalid-name,too-few-public-methods
"""Replace use of text fields to store JSON data with builtin JSONField."""
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
from __future__ import absolute_import

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# -*- coding: utf-8 -*-
###########################################################################
# Copyright (c), The AiiDA team. All rights reserved. #
# This file is part of the AiiDA code. #
# #
# The code is hosted on GitHub at https://github.com/aiidateam/aiida_core #
# For further information on the license, see the LICENSE.txt file #
# For further information please visit http://www.aiida.net #
###########################################################################
# pylint: disable=invalid-name
"""Remove legacy workflows
Expand All @@ -7,6 +15,8 @@
Create Date: 2019-04-03 17:11:44.073582
"""
from __future__ import division
from __future__ import print_function
from __future__ import absolute_import
import sys
import click
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# -*- coding: utf-8 -*-
###########################################################################
# Copyright (c), The AiiDA team. All rights reserved. #
# This file is part of the AiiDA code. #
# #
# The code is hosted on GitHub at https://github.com/aiidateam/aiida_core #
# For further information on the license, see the LICENSE.txt file #
# For further information please visit http://www.aiida.net #
###########################################################################
# pylint: disable=invalid-name
"""Remove `DbComputer.enabled`
Expand Down
8 changes: 8 additions & 0 deletions aiida/backends/tests/orm/data/test_dict.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# -*- coding: utf-8 -*-
###########################################################################
# Copyright (c), The AiiDA team. All rights reserved. #
# This file is part of the AiiDA code. #
# #
# The code is hosted on GitHub at https://github.com/aiidateam/aiida_core #
# For further information on the license, see the LICENSE.txt file #
# For further information please visit http://www.aiida.net #
###########################################################################
"""Tests for the `Dict` class."""
from __future__ import division
from __future__ import print_function
Expand Down
9 changes: 9 additions & 0 deletions aiida/backends/tests/parsers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# -*- coding: utf-8 -*-
###########################################################################
# Copyright (c), The AiiDA team. All rights reserved. #
# This file is part of the AiiDA code. #
# #
# The code is hosted on GitHub at https://github.com/aiidateam/aiida_core #
# For further information on the license, see the LICENSE.txt file #
# For further information please visit http://www.aiida.net #
###########################################################################
10 changes: 10 additions & 0 deletions aiida/backends/tests/parsers/test_parser.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# -*- coding: utf-8 -*-
###########################################################################
# Copyright (c), The AiiDA team. All rights reserved. #
# This file is part of the AiiDA code. #
# #
# The code is hosted on GitHub at https://github.com/aiidateam/aiida_core #
# For further information on the license, see the LICENSE.txt file #
# For further information please visit http://www.aiida.net #
###########################################################################
"""Test for the `Parser` base class."""
from __future__ import division
from __future__ import print_function
from __future__ import absolute_import

from aiida import orm
Expand Down
2 changes: 1 addition & 1 deletion setup.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aiida-core",
"version": "1.0.0b1",
"version": "1.0.0b2",
"url": "http://www.aiida.net/",
"license": "MIT License",
"author": "The AiiDA team",
Expand Down

0 comments on commit 0b2a3a3

Please sign in to comment.