diff --git a/conda_recipe/meta.yaml b/conda_recipe/meta.yaml index 22b498d..1743c59 100644 --- a/conda_recipe/meta.yaml +++ b/conda_recipe/meta.yaml @@ -1,6 +1,6 @@ package: name: "unimodel" - version: "0.2.2" + version: "0.2.4" source: branch: main @@ -11,6 +11,7 @@ requirements: - python - setuptools_scm - cfgrib + - dask - eccodes - netcdf4 - numba @@ -24,6 +25,7 @@ requirements: run: - python - cfgrib + - dask - eccodes - netcdf4 - numba diff --git a/docs/source/conf.py b/docs/source/conf.py index d3c6006..0ed3583 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,8 +22,8 @@ copyright = '2023, Servei Meteorològic de Catalunya' author = 'Servei Meteorològic de Catalunya' -version = '0.2' -release = '0.2.0' +version = '0.2.4' +release = '0.2.4' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/docs/source/vcontrol.rst b/docs/source/vcontrol.rst index 7c113b6..f777dc6 100644 --- a/docs/source/vcontrol.rst +++ b/docs/source/vcontrol.rst @@ -1,6 +1,12 @@ Control de versions =================== +v0.2.4 - 08/08/2023 +------------------- + +- S'afegeix la lectura del grib del hindcast de l'ECMWF i s'unifiquen els readers dels gribs de l'ECMWF mitjançant la funció :py:func:`unimodel.io.readers_nwp.read_ecmwf_grib`. +- S'inclou la lectura dels fitxers grib del model GFS i del GEFS mitjançant la funció :py:func:`unimodel.io.readers_nwp.read_ncep_grib`. +- Correcció de bugs al modul d'importació de fitxers :py:func:`unimodel.io.importers_nwp.import_nwp_grib`. v0.2.3 - 12/07/2023 ------------------- diff --git a/setup.cfg b/setup.cfg index fe896db..09cebe1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = unimodel -version = 0.2.3 +version = 0.2.4 author = Servei Meteorològic de Catalunya license = BSD description = Uniformization of model outputs @@ -23,8 +23,8 @@ setup_requires = [build_sphinx] project = 'unimodel' -version = 0.2.3 -release = 0.2.3 +version = 0.2.4 +release = 0.2.4 source-dir = 'docs' # Note: no install_requires run-time requirements are included here.