1# -*- Mode: python; tab-width: 4; indent-tabs-mode:nil; coding: utf-8 -*-
2# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
3#
4# MDAnalysis --- https://www.mdanalysis.org
5# Copyright (c) 2006-2017 The MDAnalysis Development Team and contributors
6# (see the file AUTHORS for the full list of names)
7#
8# Released under the GNU Public Licence, v2 or any higher version
9#
10# Please cite your use of MDAnalysis in published work:
11#
12# R. J. Gowers, M. Linke, J. Barnoud, T. J. E. Reddy, M. N. Melo, S. L. Seyler,
13# D. L. Dotson, J. Domanski, S. Buchoux, I. M. Kenney, and O. Beckstein.
14# MDAnalysis: A Python package for the rapid analysis of molecular dynamics
15# simulations. In S. Benthall and S. Rostrup editors, Proceedings of the 15th
16# Python in Science Conference, pages 102-109, Austin, TX, 2016. SciPy.
17#
18# N. Michaud-Agrawal, E. J. Denning, T. B. Woolf, and O. Beckstein.
19# MDAnalysis: A Toolkit for the Analysis of Molecular Dynamics Simulations.
20# J. Comput. Chem. 32 (2011), 2319--2327, doi:10.1002/jcc.21787
21#
22
23"""
24Version information for MDAnalysis - :mod:`MDAnalysis.version`
25==============================================================
26
27The version information in :mod:`MDAnalysis.version` indicates the
28release of MDAnalysis. MDAnalysis uses `semantic versioning`_ as
29described in the wiki page on `versioning of MDAnalysis`_.
30
31In brief:
32
33Given a version number MAJOR.MINOR.PATCH, we increment the
34
351. **MAJOR** version when we make **incompatible API changes**,
362. **MINOR** version when we **add functionality** in a
37   **backwards-compatible** manner, and
383. **PATCH** version when we make backwards-compatible **bug fixes**.
39
40However, as long as the **MAJOR** number is **0** (i.e. the API has
41not stabilized), even **MINOR** increases *may* introduce incompatible
42API changes. As soon as we have a 1.0.0 release, the public API can
43only be changed in a backward-incompatible manner with an increase in
44MAJOR version.
45
46Additional labels for pre-release and build metadata are available as
47extensions to the MAJOR.MINOR.PATCH format.
48
49
50.. Note:: Development versions and pre-releases have a suffix after
51          the release number, such as ``0.11.0-dev``. If you have
52          problems, try out a full release (e.g. ``0.11.0``) first.
53
54.. _`semantic versioning`: http://semver.org/
55.. _`versioning of MDAnalysis`:
56   http://wiki.mdanalysis.org/SemanticVersioning
57
58Data
59----
60
61.. autodata:: __version__
62
63"""
64
65# keep __version__ in separate file to avoid circular imports
66# e.g. with lib.log
67
68#: Release of MDAnalysis as a string, using `semantic versioning`_.
69__version__ = "0.19.2"  # NOTE: keep in sync with RELEASE in setup.py
70