From f525de5ab25c5609696f16fba84cf8d84a05f62a Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Mon, 24 Jan 2022 23:08:06 -0500 Subject: [PATCH] [UPD] update to version v1.3.0 --- README.md | 2 +- docker-compose.yml | 2 +- docker/Dockerfile.prod.pkg | 2 +- env_var.sh | 2 +- pyproject.toml | 2 +- script/install_locally_dev.sh | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4ac9a2d..96c727f 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,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.1/docker-compose.yml +wget https://raw.githubusercontent.com/ERPLibre/ERPLibre/v1.3.0/docker-compose.yml docker-compose up -d ``` diff --git a/docker-compose.yml b/docker-compose.yml index 2ca1ab6..b6b7770 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: "3.3" services: ERPLibre: - image: technolibre/erplibre:1.2.1 + image: technolibre/erplibre:1.3.0 ports: - 8069:8069 - 8071:8071 diff --git a/docker/Dockerfile.prod.pkg b/docker/Dockerfile.prod.pkg index a02d130..b413caf 100644 --- a/docker/Dockerfile.prod.pkg +++ b/docker/Dockerfile.prod.pkg @@ -1,4 +1,4 @@ -FROM technolibre/erplibre-base:1.2.1 +FROM technolibre/erplibre-base:1.3.0 ENV REPO_MANIFEST_URL https://github.com/ERPLibre/ERPLibre ARG WORKING_BRANCH diff --git a/env_var.sh b/env_var.sh index 285443c..88e7601 100755 --- a/env_var.sh +++ b/env_var.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -ERPLIBRE_VERSION="1.2.1" +ERPLIBRE_VERSION="1.3.0" EL_USER="erplibre" EL_HOME="/${EL_USER}" diff --git a/pyproject.toml b/pyproject.toml index 1dbe8b6..657fbc7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ target-version = [ "py37",] [tool.poetry] name = "ERPLibre" -version = "1.2.1" +version = "1.3.0" description = "Easy way to configure Odoo community" license = "AGPL-3.0-or-later" authors = [ "Mathieu Benoit ",] diff --git a/script/install_locally_dev.sh b/script/install_locally_dev.sh index 81160aa..2dd081b 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.1 +git tag ERPLibre/v1.3.0 #${VENV_PATH}/bin/pip install ./script/OCA_maintainer-tools/ cd -