diff --git a/ChangeLog.md b/ChangeLog.md index dc9d910..8378091 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -2,7 +2,7 @@ ## v0.2.0 -**Released: WiP** +**Released: 2023-04-02** - Fixed overly-aggressive caching of the Mandelbrot calculation. - Added a reset action. diff --git a/README.md b/README.md index 7f7b891..14afab4 100644 --- a/README.md +++ b/README.md @@ -21,4 +21,7 @@ $ pipx install textual-mandelbrot Once installed you should be able to run the command `mandelexp` and the application will run. +![mandelexp in action](https://raw.githubusercontent.com/davep/textual-mandelbrot/main/img/mandelexp03.png) +![mandelexp in action](https://raw.githubusercontent.com/davep/textual-mandelbrot/main/img/mandelexp04.png) + [//]: # (README.md ends here) diff --git a/img/mandelexp01.png b/img/mandelexp01.png index 9cd8206..d1a795a 100644 Binary files a/img/mandelexp01.png and b/img/mandelexp01.png differ diff --git a/img/mandelexp02.png b/img/mandelexp02.png index c3db6e4..57a1795 100644 Binary files a/img/mandelexp02.png and b/img/mandelexp02.png differ diff --git a/img/mandelexp03.png b/img/mandelexp03.png new file mode 100644 index 0000000..5f2b546 Binary files /dev/null and b/img/mandelexp03.png differ diff --git a/img/mandelexp04.png b/img/mandelexp04.png new file mode 100644 index 0000000..898c118 Binary files /dev/null and b/img/mandelexp04.png differ diff --git a/textual_mandelbrot/__init__.py b/textual_mandelbrot/__init__.py index 26a24e0..3358d09 100644 --- a/textual_mandelbrot/__init__.py +++ b/textual_mandelbrot/__init__.py @@ -7,7 +7,7 @@ __credits__ = [ "Dave Pearson" ] __maintainer__ = "Dave Pearson" __email__ = "davep@davep.org" -__version__ = "0.1.0" +__version__ = "0.2.0" __licence__ = "MIT" ##############################################################################