diff --git a/CHANGELOG.md b/CHANGELOG.md
index 049e6b7..584175f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,7 +7,35 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## [Unreleased]
-## [1.2.0] - 2020-12-11
+## [1.2.1] - 2021-09-28
+
+### Added
+
+- doc/migration.md
+
+### Changed
+
+- Update pip dependency with security update
+ - Jinja2==2.11.3
+ - lxml==4.6.3
+ - cryptography==3.2
+ - psutil==5.6.6
+ - Pillow==8.3.2
+ - Werkzeug==0.15.3
+- Script separate generate_config.sh from install_locally.sh
+- Improve developer documentation
+- More Docker script
+
+#### Code generator
+
+- Improve db_servers generation code
+- Improve wizard generate UI menu
+
+### Fixed
+
+- Mobile view menu item in Web interface from muk_web_theme
+
+## [1.2.0] - 2021-07-21
**Migration note**
@@ -183,7 +211,9 @@ Because addons repository has change, config file need to be updated.
- Support only python3.6 and python3.7, python3.8 causes error in runtime.
-[Unreleased]: https://github.com/ERPLibre/ERPLibre/compare/v1.2.0...HEAD
+[Unreleased]: https://github.com/ERPLibre/ERPLibre/compare/v1.2.1...HEAD
+
+[1.2.1]: https://github.com/ERPLibre/ERPLibre/compare/v1.2.0...v1.2.1
[1.2.0]: https://github.com/ERPLibre/ERPLibre/compare/v1.1.1...v1.2.0
diff --git a/README.md b/README.md
index 14c5220..7517f5d 100644
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ First, install dependencies to run docker, check script `./script/install_ubuntu
The docker volume is binded to the directory name, therefore create a unique directory name and run:
```bash
-wget https://raw.githubusercontent.com/ERPLibre/ERPLibre/v1.2.0/docker-compose.yml
+wget https://raw.githubusercontent.com/ERPLibre/ERPLibre/v1.2.1/docker-compose.yml
docker-compose up -d
```
diff --git a/default.xml b/default.xml
index b5de823..b952978 100644
--- a/default.xml
+++ b/default.xml
@@ -23,7 +23,7 @@
-
+
@@ -87,14 +87,14 @@
-
+
-
-
+
+
diff --git a/docker-compose.yml b/docker-compose.yml
index b327af5..1492b13 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -1,7 +1,7 @@
version: "3.3"
services:
ERPLibre:
- image: technolibre/erplibre:1.2.0
+ image: technolibre/erplibre:1.2.1
ports:
- 8069:8069
- 8071:8071
diff --git a/docker/Dockerfile.prod.pkg b/docker/Dockerfile.prod.pkg
index 83319c8..e7d7e82 100644
--- a/docker/Dockerfile.prod.pkg
+++ b/docker/Dockerfile.prod.pkg
@@ -1,4 +1,4 @@
-FROM technolibre/erplibre-base:1.2.0
+FROM technolibre/erplibre-base:1.2.1
ENV REPO_MANIFEST_URL https://github.com/ERPLibre/ERPLibre
ARG WORKING_BRANCH
diff --git a/env_var.sh b/env_var.sh
index 768a08a..285443c 100755
--- a/env_var.sh
+++ b/env_var.sh
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
-ERPLIBRE_VERSION="1.2.0"
+ERPLIBRE_VERSION="1.2.1"
EL_USER="erplibre"
EL_HOME="/${EL_USER}"
diff --git a/script/install_locally_dev.sh b/script/install_locally_dev.sh
index 681fd5d..81160aa 100755
--- a/script/install_locally_dev.sh
+++ b/script/install_locally_dev.sh
@@ -26,6 +26,6 @@ pip install setuptools-rust
# Delete all tag before installing, or break installation, will generate a new one after
git tag | xargs git tag -d
python setup.py install
-git tag ERPLibre/v1.2.0
+git tag ERPLibre/v1.2.1
#${VENV_PATH}/bin/pip install ./script/OCA_maintainer-tools/
cd -