From 9276f8f86b538e9da8b907bd217c4f60407d902b Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Sun, 31 Oct 2021 19:21:24 -0700 Subject: [PATCH] bump version to 1.0 Breaking changes: -`eps` argument renamed to `foreground` - `Grid` no longer contains actual data (iem the data modified by draw_* functions), only the metadata (edge positions, periodicity, etc.). Data is now a user-managed ndarray. --- gridlock/VERSION.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gridlock/VERSION.py b/gridlock/VERSION.py index aa70ad0..8e6abf6 100644 --- a/gridlock/VERSION.py +++ b/gridlock/VERSION.py @@ -1,4 +1,4 @@ """ VERSION defintion. THIS FILE IS MANUALLY PARSED BY setup.py and REQUIRES A SPECIFIC FORMAT """ __version__ = ''' -0.5 +1.0 '''.strip()