diff --git a/README.md b/README.md index a3e18bc..bf59273 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # RPA for Python :snake: -[**v1.32**](https://github.com/tebelorg/RPA-Python/releases) | [**Use Cases**](#use-cases) | [**API Reference**](#api-reference) | [**About & Credits**](#about--credits) | [**PyCon Video**](https://www.youtube.com/watch?v=F2aQKWx_EAE) | [**Run in Colab**](https://colab.research.google.com/drive/13bQO6G_hzE1teX35a3NZ4T5K-ICFFdB5?usp=sharing) | [**Telegram Chat**](https://t.me/rpa_chat) +[**v1.33**](https://github.com/tebelorg/RPA-Python/releases) | [**Use Cases**](#use-cases) | [**API Reference**](#api-reference) | [**About & Credits**](#about--credits) | [**PyCon Video**](https://www.youtube.com/watch?v=F2aQKWx_EAE) | [**Run in Colab**](https://colab.research.google.com/drive/13bQO6G_hzE1teX35a3NZ4T5K-ICFFdB5?usp=sharing) | [**Telegram Chat**](https://t.me/rpa_chat) >_This tool was previously known as TagUI for Python. [More details](https://github.com/tebelorg/RPA-Python/issues/100) on the name change, which is backward compatible so existing scripts written with `import tagui as t` and `t.function()` will still work._ diff --git a/rpa_package/rpa.py b/rpa_package/rpa.py index 4a20c54..1c886dd 100644 --- a/rpa_package/rpa.py +++ b/rpa_package/rpa.py @@ -2,7 +2,7 @@ # Apache License 2.0, Copyright 2019 Tebel.Automation Private Limited # https://github.com/tebelorg/RPA-Python/blob/master/LICENSE.txt __author__ = 'Ken Soh ' -__version__ = '1.33.0' +__version__ = '1.33.1' # for backward compatibility, invoke tagui.py functions to use in rpa.py from tagui import * diff --git a/rpa_package/setup.py b/rpa_package/setup.py index 2c5685f..c0d517d 100644 --- a/rpa_package/setup.py +++ b/rpa_package/setup.py @@ -2,8 +2,8 @@ setup( name='rpa', - version='1.33.0', - py_modules=['rpa'], install_requires=['tagui>=1.32.0'], + version='1.33.1', + py_modules=['rpa'], install_requires=['tagui>=1.33.0'], author='Ken Soh', author_email='opensource@tebel.org', license='Apache License 2.0',