Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion etls/hello-world/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Include here the dependencies your ETL needs
#tc_etl_lib==0.15.0
#tc_etl_lib==0.16.0
8 changes: 5 additions & 3 deletions python-lib/tc_etl_lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ Para instalar la última versión:

Para instalar una versión concreta:

pip install tc_etl_lib==0.15.0
pip install tc_etl_lib==0.16.0

También se puede añadir la depedencia a `requirements.txt`:

tc_etl_lib==0.15.0
tc_etl_lib==0.16.0

he instalar (junto con el resto de depedencias) con el habitual:

Expand All @@ -59,7 +59,7 @@ he instalar (junto con el resto de depedencias) con el habitual:

La librería de tipo `tc_etl_lib-<version>.tar.gz`, se puede instalar en cualquier entorno python con el siguiente comando:

pip install ./tc_etl_lib/dist/tc_etl_lib-0.15.0.tar.gz
pip install ./tc_etl_lib/dist/tc_etl_lib-0.16.0.tar.gz

En este caso, la librería está disponible en ese directorio. Si estuviera disponible en cualquier otra ruta, se debería de reemplazar por la ruta relativa o absoluta correspondiente. Si se quiere instalar sobre un entorno venv, primero has de activar el entorno venv y luego ejecutar el comando de instalación de la librería.

Expand Down Expand Up @@ -511,6 +511,8 @@ TOTAL 403 221 45%

## Changelog

0.16.0 (September 29th, 2025)

- Add: new optional parameter `idPattern` in cbManager's methods get_entities and get_entities_page used to filter entities by Identity pattern

0.15.0 (Feburary 27th, 2025)
Expand Down
2 changes: 1 addition & 1 deletion python-lib/tc_etl_lib/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

HERE = pathlib.Path(__file__).parent

VERSION = '0.15.0.post'
VERSION = '0.16.0'
PACKAGE_NAME = 'tc_etl_lib'
AUTHOR = ''
AUTHOR_EMAIL = ''
Expand Down