From a3e78915cfacd6c7da667b563785521d5cd883a8 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Thu, 5 Sep 2019 07:00:38 -0500 Subject: [PATCH] Fix __version__ in Python API --- openmc/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmc/__init__.py b/openmc/__init__.py index 1661c4ac47..1195db725e 100644 --- a/openmc/__init__.py +++ b/openmc/__init__.py @@ -34,4 +34,4 @@ from . import examples # Import a few convencience functions that used to be here from openmc.model import rectangular_prism, hexagonal_prism -__version__ = '0.10.0' +__version__ = '0.11.0-dev'