Skip to content

Commit

Permalink
Bump version: 0.212 → 0.213
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminhwilliams committed Sep 29, 2022
1 parent fe6bcf5 commit c66161c
Show file tree
Hide file tree
Showing 14 changed files with 40 additions and 28 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
Screen19 0.213 (2022-09-29)
===========================

Bugfixes
--------

- Fix a case of screen19 failing when trying to refine the different possible Bravais settings of the found lattice.
This was happening because screen19 was failing to filter out reflections with zero variance in the position of their observed centroids before performing the refinement. (`#53 <https://github.com/xia2/screen19/issues/53>`_)
- Fix broken help messages for ``screen19`` and ``screen19.minimum_exposure``. (`#58 <https://github.com/xia2/screen19/issues/58>`_)


Deprecations and Removals
-------------------------

- screen19 no longer supports DIALS 2.2 or Python 2.7. To install screen19, it is recommended that yous start by `installing DIALS<https://dials.github.io/installation.html>`_ version 3.4 or greater. (`#52 <https://github.com/xia2/screen19/issues/52>`_)


Misc
----

- `#43 <https://github.com/xia2/screen19/issues/43>`_, `#44 <https://github.com/xia2/screen19/issues/44>`_, `#46 <https://github.com/xia2/screen19/issues/46>`_, `#48 <https://github.com/xia2/screen19/issues/48>`_, `#50 <https://github.com/xia2/screen19/issues/50>`_, `#51 <https://github.com/xia2/screen19/issues/51>`_, `#55 <https://github.com/xia2/screen19/issues/55>`_


screen19 0.212 (2020-10-12)
===========================

Expand Down
1 change: 0 additions & 1 deletion newsfragments/43.misc

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/44.misc

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/46.misc

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/48.misc

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/50.misc

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/51.misc

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/52.removal

This file was deleted.

2 changes: 0 additions & 2 deletions newsfragments/53.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/55.misc

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/58.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion screen19/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

# Flake8 does not detect typing yet (https://gitlab.com/pycqa/flake8/issues/342)

__version__ = "0.212"
__version__ = "0.213"

logger = logging.getLogger("dials.screen19")
debug, info, warn = logger.debug, logger.info, logger.warning
Expand Down
30 changes: 15 additions & 15 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.212
current_version = 0.213
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))?
Expand All @@ -22,20 +22,20 @@ exclude = docs
test = pytest

[metadata]
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: BSD License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Operating System :: OS Independent
project-urls =
Download = https://github.com/xia2/screen19/releases
GitHub = https://github.com/xia2/screen19
Bug-Tracker = https://github.com/xia2/screen19/issues
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: BSD License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Operating System :: OS Independent
project-urls =
Download = https://github.com/xia2/screen19/releases
GitHub = https://github.com/xia2/screen19
Bug-Tracker = https://github.com/xia2/screen19/issues

[options]
python_requires = >=3.6
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@
packages=find_packages(),
test_suite="tests",
tests_require=["mock>=2.0", "pytest>=4.5"],
version="0.212",
version="0.213",
zip_safe=False,
)

0 comments on commit c66161c

Please sign in to comment.