Skip to content

Commit 2f332ec

Browse files
authored
Merge pull request #80 from telefonicasc/task/prepare_0.11.0
Step: 0.10.0.post -> 0.11.0
2 parents 32f48e3 + 2a984e8 commit 2f332ec

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

etls/hello-world/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Include here the dependencies your ETL needs
2-
#tc_etl_lib==0.10.0
2+
#tc_etl_lib==0.11.0

python-lib/tc_etl_lib/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ Para instalar la última versión:
4545

4646
Para instalar una versión concreta:
4747

48-
pip install tc_etl_lib==0.10.0
48+
pip install tc_etl_lib==0.11.0
4949

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

52-
tc_etl_lib==0.10.0
52+
tc_etl_lib==0.11.0
5353

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

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

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

62-
pip install ./tc_etl_lib/dist/tc_etl_lib-0.10.0.tar.gz
62+
pip install ./tc_etl_lib/dist/tc_etl_lib-0.11.0.tar.gz
6363

6464
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.
6565

@@ -505,6 +505,8 @@ TOTAL 403 221 45%
505505

506506
## Changelog
507507

508+
0.11.0 (February 2nd, 2024)
509+
508510
- Fix: close session upon finalization to avoid warnings ([#76](https://github.com/telefonicasc/etl-framework/pull/76))
509511

510512
0.10.0 (November 29th, 2023)

python-lib/tc_etl_lib/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
HERE = pathlib.Path(__file__).parent
2525

26-
VERSION = '0.10.0.post'
26+
VERSION = '0.11.0'
2727
PACKAGE_NAME = 'tc_etl_lib'
2828
AUTHOR = ''
2929
AUTHOR_EMAIL = ''

0 commit comments

Comments
 (0)