diff --git a/docs/CHANGES.rst b/docs/CHANGES.rst index cdf247a..23789c0 100644 --- a/docs/CHANGES.rst +++ b/docs/CHANGES.rst @@ -19,6 +19,21 @@ Changes ******* +Version 0.3.0 (2024-10-02) +-------------------------- + +- Add plot STAC images by clicking (`#72 `_) +- Add a check before attempting to retrieve time series (`#63 `_) +- Review plot library with `seaborn` (`#53 `_) +- Add option or checkbox for user to choose whether to normalize data or not (`#64 `_) +- Resolve `nodata` in plot time series with seaborn (`#65 `_) +- Resolve coordinates/layers projection in enable canvas points selection (`#66 `_) +- Add menu with advanced options to control virtual raster generation (`#67 `_) +- Review and update methods for the installation and build steps for plugin (`#68 `_) +- Draw and zoom in the points based on selected coordinates to get time series (`#69 `_) +- Add user data path to save virtual rasters from STAC (`#70 `_) + + Version 0.2.0 (2024-08-19) -------------------------- diff --git a/docs/INSTALL.rst b/docs/INSTALL.rst index 1c3ef99..7fdd336 100644 --- a/docs/INSTALL.rst +++ b/docs/INSTALL.rst @@ -62,7 +62,7 @@ Or if you download to install by `zip` file, use: .. code-block:: text - $ pip3 install git+https://github.com/brazil-data-cube/wtss-qgis.git@v0.2.0 + $ pip3 install git+https://github.com/brazil-data-cube/wtss-qgis.git@v0.3.0 For **development environment**, go to the source code folder: @@ -122,7 +122,7 @@ If you download to install by `zip` file, use: .. code-block:: text - \> pip3 install git+https://github.com/brazil-data-cube/wtss-qgis.git@v0.2.0 + \> pip3 install git+https://github.com/brazil-data-cube/wtss-qgis.git@v0.3.0 If you cloned the repository, for **development environment**, you can install the requirements running `pip` in source code: diff --git a/wtss_plugin/version.py b/wtss_plugin/version.py index 4e264ca..8e8e66a 100644 --- a/wtss_plugin/version.py +++ b/wtss_plugin/version.py @@ -18,4 +18,4 @@ """Python QGIS Plugin for WTSS.""" -__version__ = '0.2.0' +__version__ = '0.3.0'