Skip to content

Commit

Permalink
🔖 prepare release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelrpl committed Nov 19, 2024
1 parent 2f581ed commit 1c06c68
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
15 changes: 15 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,21 @@
Changes
=======


Version 0.4.0 (2024-11-19)
--------------------------

- Disable file export when there is no selected filters (`#92 <https://github.com/brazil-data-cube/wtss-qgis/issues/92>`_)
- Add rules to normalize and interpolate data to exported data as CSV and JSON files (`#78 <https://github.com/brazil-data-cube/wtss-qgis/issues/78>`_)
- Add menu with advanced options to draw selected points (`#71 <https://github.com/brazil-data-cube/wtss-qgis/issues/71>`_)
- Allow to open multiple images when clicking in the Point (`#73 <https://github.com/brazil-data-cube/wtss-qgis/issues/73>`_)
- Review script template to export as Python code (`#76 <https://github.com/brazil-data-cube/wtss-qgis/issues/76>`_)
- Review the GUI Input to deal with longitude/latitude (`#93 <https://github.com/brazil-data-cube/wtss-qgis/issues/93>`_)
- Remove the GUI option `enable selection``, and keep it always active by default (`#83 <https://github.com/brazil-data-cube/wtss-qgis/issues/83>`_)
- Remove the GUI option `normalize`, and ensure that all time series values are being normalized automatically using "scale factor" (`#84 <https://github.com/brazil-data-cube/wtss-qgis/issues/84>`_)
- Remove the tab to deal with WTSS endpoints (`#85 <https://github.com/brazil-data-cube/wtss-qgis/issues/85>`_)


Version 0.3.1 (2024-10-24)
--------------------------

Expand Down
6 changes: 3 additions & 3 deletions wtss_plugin/help/source/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ This errors is because the plugin install a version of ``numpy`` in a local path

If your command line python is using the same of your installed QGIS, you can fix the version of ``matplotlib`` and ``numpy``.

The required versions for WTSS Plugin 0.3 is ``numpy !=1.24.0, <2, >=1.23`` and ``matplotlib >= 3.7``.
The required versions for WTSS Plugin 0.4 is ``numpy !=1.24.0, <2, >=1.23`` and ``matplotlib >= 3.7``.

You can force the reinstall of ``numpy`` using equals (==) to fix the version:

Expand Down Expand Up @@ -121,14 +121,14 @@ The plugin dependencies can be installed using this command:

.. code-block:: shell
python3 -m pip install git+https://github.com/brazil-data-cube/wtss-qgis.git@v0.3.1
python3 -m pip install git+https://github.com/brazil-data-cube/wtss-qgis.git@v0.4.0
Another way is cloning the repository from ``github`` and run ``pip``:

.. code-block:: shell
git clone https://github.com/brazil-data-cube/wtss-qgis.git@v0.3.1
git clone https://github.com/brazil-data-cube/wtss-qgis.git@v0.4.0
.. code-block:: shell
Expand Down
2 changes: 1 addition & 1 deletion wtss_plugin/metadata.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
name=WTSS
qgisMinimumVersion=3.0
description=QGIS Plugin for Brazil Data Cube Web Time Series Service
version=0.3.1
version=0.4.0
author=INPE
email=bdc.team@inpe.br

Expand Down
2 changes: 1 addition & 1 deletion wtss_plugin/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@

"""Python QGIS Plugin for WTSS."""

__version__ = '0.3.1'
__version__ = '0.4.0'

0 comments on commit 1c06c68

Please sign in to comment.