diff --git a/CHANGELOG.md b/CHANGELOG.md index 25206728..275c97a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,17 +17,24 @@ When a new version of `solaris` is released, all of the changes in the Unrelease ## Unreleased ### Added -- 20200701, dphogan: Added multimodal preprocessing subpackage (#360) -- 20200716, dphogan: Added three-part tutorial for preprocessing subpackage ### Removed ### Changed ### Fixed +### Deprecated +### Security + +--- + +## Version 0.3.0 + +### Added +- 20200701, dphogan: Added multimodal preprocessing subpackage (#360) +- 20200716, dphogan: Added three-part tutorial for preprocessing subpackage +### Fixed - 20200630, dphogan: Remove edge case numeric values from loss function tests (#358) - 20200706, dphogan: Added API reference entry for utils.data - 20200706, roshanr11: fixed `checkpoint_frequency` parameter in YAML files to work as intended - 20200706, roshanr11: tqdm progress bar fixed, follow-up on previous issue (#335) -### Deprecated -### Security --- @@ -45,7 +52,6 @@ When a new version of `solaris` is released, all of the changes in the Unrelease - 20200401, rbavery: fixed bug where aoi boundary was not intersected with src_img extent prior to tiling - 20200401, rbavery/nrweir: adapted `_check_crs` to convert `pyproj.CRS` or pass through `rasterio.crs.CRS` class when rasterio crs object is required (for example, reprojecting in the tilers) - 20200414, zaburo-ch: fixed `val_datagen` to point to the correct augmentation pipeline ---- --- diff --git a/docs/conf.py b/docs/conf.py index 69bef741..5a4a0d07 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,8 +25,8 @@ copyright = u'2018-{}, CosmiQ Works: an IQT Lab'.format(time.strftime("%Y")) # The full version, including alpha/beta/rc tags -release = '0.2.2' -version = '0.2.2' +release = '0.3.0' +version = '0.3.0' # -- General configuration --------------------------------------------------- diff --git a/solaris/__init__.py b/solaris/__init__.py index c349d5c5..5b883857 100644 --- a/solaris/__init__.py +++ b/solaris/__init__.py @@ -1,3 +1,3 @@ from . import bin, data, eval, nets, preproc, raster, tile, utils, vector -__version__ = "0.2.2" +__version__ = "0.3.0"