diff --git a/CHANGELOG.md b/CHANGELOG.md index bd749969..66661079 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log / Release Log for openPMD-viewer +## 0.3.2 + +This is version `0.3.2` of openPMD-viewer. The following changes were introduced: + +- The conda recipe in `conda_recipe/` was simplified and streamlined. +- The documentation now explains how to install openPMD-viewer with `conda`, the instructions to release the package was put into a document `RELEASING.md`. +- A file `MANIFEST.in` was added, to avoid issues with pip and Python 3. + ## 0.3.1 This is version `0.3.1` of openPMD-viewer. This version introduces minor changes in the way the tests are run in `setup.py`. The aim of these changes are to prepare a conda release. diff --git a/conda_recipe/meta.yaml b/conda_recipe/meta.yaml index 97dca59c..92222a78 100644 --- a/conda_recipe/meta.yaml +++ b/conda_recipe/meta.yaml @@ -1,4 +1,4 @@ -{% set version = "0.3.1" %} +{% set version = "0.3.2" %} package: name: openpmd_viewer diff --git a/setup.py b/setup.py index 30fec4bf..8c526ca6 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def run_tests(self): # Main setup command setup(name='openPMD-viewer', - version='0.3.1', + version='0.3.2', description='Visualization tools for openPMD files', long_description=long_description, url='https://github.com/openPMD/openPMD-viewer.git',