diff --git a/Changes b/Changes index aa65afe..f2ba442 100644 --- a/Changes +++ b/Changes @@ -1,24 +1,39 @@ -gnuplotlib (0.37) unstable; urgency=medium +gnuplotlib (0.38) + + * Extended add_plot_option() API + + This is a backwards-compatible update. There is NO API break. Two new + features: + + - multiple key/value sets can be set in a single call by using keyword + arguments + + - "overwrite" kwarg can be used to overwrite previously-set keys OR to + leave the previous ones without barfing + + -- Dima Kogan Sun, 11 Apr 2021 18:42:07 -0700 + +gnuplotlib (0.37) * Updated default hardcopy settings -- Dima Kogan Wed, 03 Feb 2021 14:31:33 -0800 -gnuplotlib (0.36) unstable; urgency=medium +gnuplotlib (0.36) * add_plot_option() API change: takes single options as scalars and lists as lists, just like the plot options that accept multiple values -- Dima Kogan Fri, 13 Nov 2020 21:28:55 -0800 -gnuplotlib (0.35) unstable; urgency=medium +gnuplotlib (0.35) * Improved default svg terminal settings * Added add_plot_option() function, more robust plot option parsing -- Dima Kogan Sun, 08 Nov 2020 01:33:03 -0800 -gnuplotlib (0.34) unstable; urgency=medium +gnuplotlib (0.34) * Lots of updates to the guide contents, and to the way it is built * I now barf if both "_key" and "key" are given in any set of options diff --git a/gnuplotlib.py b/gnuplotlib.py index f9f243b..a5d5c88 100755 --- a/gnuplotlib.py +++ b/gnuplotlib.py @@ -1092,7 +1092,7 @@ class gnuplotlib has a separate gnuplot process and a plot window. If multiple import numpysane as nps # setup.py assumes the version is a simple string in '' quotes -__version__ = '0.37' +__version__ = '0.38' # In a multiplot, the "process" options apply to the larger plot containing all # the subplots, and the "subplot" options apply to each invididual plot.