From 7cbe22788cc94a79b2d2b1f7ad912bf7526cd59e Mon Sep 17 00:00:00 2001 From: Gary Granger Date: Thu, 30 Jun 2022 09:25:43 -0600 Subject: [PATCH] create version 2.1 --- BSpline/BSpline.dox | 15 +++++++++++---- BSpline/BSplineVersion.h | 6 +----- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/BSpline/BSpline.dox b/BSpline/BSpline.dox index bb49471..7fed79f 100644 --- a/BSpline/BSpline.dox +++ b/BSpline/BSpline.dox @@ -7,11 +7,11 @@ BSplineBase class. /** @page Cubic B-Spline @author Gary Granger (http://www.eol.ucar.edu/homes/granger) -@date July, 2015 +@date June, 2022 @section download Download -This software is copyright 2015 by the University Corporation for +This software is copyright 2022 by the University Corporation for Atmospheric Research (UCAR). It is licensed for use according to the standard BSD license: @@ -30,11 +30,11 @@ implementation by James L. Franklin, NOAA/Hurricane Research Division. The source should be available for download from github here: -- https://github.com/ncareol/bspline +- https://github.com/NCAR/bspline The generated documentation may also be online here: -- http://ncareol.github.io/bspline/ +- http://ncar.github.io/bspline/ @section documentation Documentation @@ -50,6 +50,13 @@ The HTML documentation is generated from the source files by Doxygen @section releasenotes Release Notes +

Release 2.1

+ +Fix missing assignment operator bug in BSplineBase. Thanks to @@AlexRockliff +for reporting it. + +Add simple automated test which compares sample outputs against baseline. +

Release 2.0

The two obsolete version methods were merged into one, diff --git a/BSpline/BSplineVersion.h b/BSpline/BSplineVersion.h index eb44f9a..b8b0ca1 100644 --- a/BSpline/BSplineVersion.h +++ b/BSpline/BSplineVersion.h @@ -20,13 +20,9 @@ #define bspline_str(s) #s #define BSPLINE_VERSION bspline_xstr(BSPLINE_AUTO_REVISION) #else -#define BSPLINE_VERSION "v2.0-x" +#define BSPLINE_VERSION "v2.1" #endif -/* - * The repo URL has been hardcoded to the NCAR organization, since it moved - * from the ncareol organization. - */ #define BSPLINE_URL "https://github.com/NCAR/bspline" #endif // _BSPLINE_VERSION_H_