From 09bae0fd0e2ded05dfa1aadb5c41625c43124da5 Mon Sep 17 00:00:00 2001 From: Dean Moldovan Date: Fri, 28 Apr 2017 16:19:29 +0200 Subject: [PATCH] Update changelog and bump version for bugfix release --- changelog.md | 5 ++++- pybinding/__about__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 209bc5c6..53d5add0 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # Changelog -### v0.9.1 | in development +### v0.9.1 | 2017-04-28 * Fixed an issue with multi-orbital models where onsite/hopping modifiers would return unexpected results if a new `energy` array was returned (rather than being modified in place). @@ -8,6 +8,9 @@ * Fixed `Solver.calc_spatial_ldos` and `Solver.calc_probability` returning single-orbital results for multi-orbital models. +* Fixed slicing of `Structure` objects and made access to the `data` property of `SpatialMap` and + `StructureMap` mutable again. + ### v0.9.0 | 2017-04-14 diff --git a/pybinding/__about__.py b/pybinding/__about__.py index 323967d7..d2c84931 100644 --- a/pybinding/__about__.py +++ b/pybinding/__about__.py @@ -1,6 +1,6 @@ """Package for numerical tight-binding calculations in solid state physics""" __title__ = "pybinding" -__version__ = "0.9.1.dev" +__version__ = "0.9.1" __summary__ = "Package for tight-binding calculations" __url__ = "https://github.com/dean0x7d/pybinding"