From b7bb03758334aee17020a1fc1bbf63ce43c846f7 Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Fri, 11 Dec 2020 00:46:28 -0500 Subject: [PATCH] Release v1.1.1 --- CHANGELOG.md | 57 ++++++++++++++++++++++++++++++++++---- default.xml | 13 ++++++--- docker/Dockerfile.prod.pkg | 2 +- env_var.sh | 4 +-- 4 files changed, 63 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 156ff5e..243a17a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,18 +1,42 @@ # Changelog + All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](https://keepachangelog.com), -and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +The format is based on [Keep a Changelog](https://keepachangelog.com). +This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] -### Added -- Developer, test, migration and user documentation ### Changed + - Travis CI -## [1.1.0] - 2020-09-30 +## [1.1.1] - 2020-12-11 + ### Added + +- Developer, test, migration and user documentation +- Branding ERPLibre with muk_branding +- Uninstall module from parameter Odoo +- Makefile to generate ERPLibre documentation WIP +- Docker support volume on /etc/odoo +- Docker support update database + +### Changed + +- Better documentation on how to use ERPLibre and release +- Support wkhtmltox_0.12.6-1 + +### Fixed + +- db_backup to accept public host key on sftp +- Docker dependency +- Freeze poetry version 1.0.10 + +## [1.1.0] - 2020-09-30 + +### Added + - Docker - Pyenv to manage python version - Poetry to manage python dependencies @@ -26,12 +50,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add cloud/saas repo ### Changed + - Update to Odoo Community 12.0 and all addons - Rename venv to .venv - More documentation on how to use ERPLibre ## [1.0.1] - 2020-07-14 + ### Added + - Improved documentation with development and production environment - Improved documentation with git repo - Move default.xml manifest to root, the default location @@ -45,37 +72,55 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - New module sale_margin_editor ### Fixed + - Production installation with git_repo ## [1.0.0] - 2020-07-04 + ### Added + - Environment of development, discovery and production with documentation and script. - Google git-repo to support addons repository instead of using Git submodule. ### Removed + - Git submodule ## [0.1.1] - 2020-04-28 + ### Added + - Support helpdesk supplier, helper, employee and services - Support [SanteLibre.ca](https://santelibre.ca) with MRP, website, hr, ecommerce - Donation module with thermometer for website - Script to fork project and all repos in submodule to create ERPLibre ## [0.1.0] - 2020-04-20 + ### Added + - Move project from https://github.com/mathbentech/InstallScript to ERPLibre. - Support of Odoo Community 12.0 2019-11-19 94bcbc92e5e5a6fd3de7267e3c01f8c11fb045f4. ### Changed + - Support scrummer, project, sale, website, helpdesk and hr - Support Nginx and improve installation ### Fixed + - Support only python3.6 and python3.7, python3.8 causes error in runtime. -[Unreleased]: https://github.com/ERPLibre/ERPLibre/compare/v1.0.1...HEAD +[Unreleased]: https://github.com/ERPLibre/ERPLibre/compare/v1.1.1...HEAD + +[1.1.1]: https://github.com/ERPLibre/ERPLibre/compare/v1.0.1...v1.1.1 + +[1.1.0]: https://github.com/ERPLibre/ERPLibre/compare/v1.0.1...v1.1.0 + [1.0.1]: https://github.com/ERPLibre/ERPLibre/compare/v1.0.0...v1.0.1 + [1.0.0]: https://github.com/ERPLibre/ERPLibre/compare/v0.1.1...v1.0.0 + [0.1.1]: https://github.com/ERPLibre/ERPLibre/compare/v0.1.0...v0.1.1 + [0.1.0]: https://github.com/ERPLibre/ERPLibre/releases/tag/v0.1.0 diff --git a/default.xml b/default.xml index 427b8fc..a483faf 100644 --- a/default.xml +++ b/default.xml @@ -58,10 +58,11 @@ + - + @@ -78,7 +79,7 @@ - + @@ -89,10 +90,13 @@ + + + @@ -100,9 +104,10 @@ + - + @@ -128,7 +133,7 @@ - + diff --git a/docker/Dockerfile.prod.pkg b/docker/Dockerfile.prod.pkg index a6be82b..f9a3c30 100644 --- a/docker/Dockerfile.prod.pkg +++ b/docker/Dockerfile.prod.pkg @@ -1,4 +1,4 @@ -FROM technolibre/erplibre-base:1.1.0 +FROM technolibre/erplibre-base:1.1.1 ENV REPO_MANIFEST_URL https://github.com/ERPLibre/ERPLibre ARG WORKING_BRANCH diff --git a/env_var.sh b/env_var.sh index d7111c6..6d58466 100755 --- a/env_var.sh +++ b/env_var.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -ERPLIBRE_VERSION="1.1.0" +ERPLIBRE_VERSION="1.1.1" EL_USER="erplibre" EL_HOME="/${EL_USER}" @@ -19,7 +19,7 @@ EL_MINIMAL_ADDONS="False" # Set this to True if you want to install Nginx! EL_INSTALL_NGINX="True" # Set the website name -EL_WEBSITE_NAME="_" +EL_WEBSITE_NAME="" EL_GITHUB_TOKEN="" EL_MANIFEST_PROD="./default.xml" EL_MANIFEST_DEV="./manifest/default.dev.xml"