diff --git a/README.md b/README.md index 1c0a23c..5553867 100644 --- a/README.md +++ b/README.md @@ -45,9 +45,11 @@ A password is not needed, because auth done via SSOwat ;) ## history -* [compare v0.1.0...master](https://github.com/YunoHost-Apps/django_ynh/compare/v0.1.0...master) **dev** +* [compare v0.1.2rc1...master](https://github.com/YunoHost-Apps/django_ynh/compare/v0.1.2rc1...master) **dev** * tbc -* [v0.1.1 - 28.12.2020](https://github.com/YunoHost-Apps/django_ynh/compare/v0.1.0...v0.1.1) +* [v0.1.2rc1 - 29.12.2020](https://github.com/YunoHost-Apps/django_ynh/compare/v0.1.1...v0.1.2rc1) **unreleased, yet** + * Bugfixes +* [v0.1.1 - 29.12.2020](https://github.com/YunoHost-Apps/django_ynh/compare/v0.1.0...v0.1.1) * Refactor "create_superuser" to a manage command, useable via "django_ynh" in `INSTALLED_APPS` * Generate "conf/requirements.txt" and use this file for install * rename own settings and urls (in `/conf/`) diff --git a/django_ynh/__init__.py b/django_ynh/__init__.py index df9144c..0b67b11 100644 --- a/django_ynh/__init__.py +++ b/django_ynh/__init__.py @@ -1 +1 @@ -__version__ = '0.1.1' +__version__ = '0.1.2rc1' diff --git a/manifest.json b/manifest.json index 23ab0b7..5030dc8 100644 --- a/manifest.json +++ b/manifest.json @@ -5,7 +5,7 @@ "description": { "en": "Glue code to package django projects as yunohost apps." }, - "version": "0.1.1~ynh1", + "version": "0.1.2rc1~ynh1", "url": "https://github.com/jedie/django_ynh", "license": "GPL-3.0", "maintainer": { diff --git a/pyproject.toml b/pyproject.toml index 84b053e..d308f0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django_ynh" -version = "0.1.1" +version = "0.1.2rc1" description = "Glue code to package django projects as yunohost apps." authors = ["JensDiemer "] license = "GPL" diff --git a/scripts/_common.sh b/scripts/_common.sh index 66100bd..661b75f 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -28,7 +28,7 @@ log_file="${log_path}/django_ynh.log" pkg_dependencies="build-essential python3-dev python3-pip python3-venv git postgresql postgresql-contrib" # To install/upgrade this project via pip: -pip_install_string="django_ynh==0.1.1" +pip_install_string="django_ynh==0.1.2rc1" #================================================= # Redis HELPERS