[UPD] update to version v1.3.0

This commit is contained in:
Mathieu Benoit 2022-01-24 23:08:06 -05:00
parent b85466b390
commit f525de5ab2
6 changed files with 6 additions and 6 deletions

View file

@ -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: The docker volume is binded to the directory name, therefore create a unique directory name and run:
```bash ```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 docker-compose up -d
``` ```

View file

@ -1,7 +1,7 @@
version: "3.3" version: "3.3"
services: services:
ERPLibre: ERPLibre:
image: technolibre/erplibre:1.2.1 image: technolibre/erplibre:1.3.0
ports: ports:
- 8069:8069 - 8069:8069
- 8071:8071 - 8071:8071

View file

@ -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 ENV REPO_MANIFEST_URL https://github.com/ERPLibre/ERPLibre
ARG WORKING_BRANCH ARG WORKING_BRANCH

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
ERPLIBRE_VERSION="1.2.1" ERPLIBRE_VERSION="1.3.0"
EL_USER="erplibre" EL_USER="erplibre"
EL_HOME="/${EL_USER}" EL_HOME="/${EL_USER}"

View file

@ -12,7 +12,7 @@ target-version = [ "py37",]
[tool.poetry] [tool.poetry]
name = "ERPLibre" name = "ERPLibre"
version = "1.2.1" version = "1.3.0"
description = "Easy way to configure Odoo community" description = "Easy way to configure Odoo community"
license = "AGPL-3.0-or-later" license = "AGPL-3.0-or-later"
authors = [ "Mathieu Benoit <mathben@technolibre.ca>",] authors = [ "Mathieu Benoit <mathben@technolibre.ca>",]

View file

@ -26,6 +26,6 @@ pip install setuptools-rust
# Delete all tag before installing, or break installation, will generate a new one after # Delete all tag before installing, or break installation, will generate a new one after
git tag | xargs git tag -d git tag | xargs git tag -d
python setup.py install 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/ #${VENV_PATH}/bin/pip install ./script/OCA_maintainer-tools/
cd - cd -