release as v0.1.1

This commit is contained in:
JensDiemer 2020-12-29 11:49:52 +01:00
parent cc51cabf85
commit bad3ffd1bb
5 changed files with 8 additions and 4 deletions

View file

@ -47,6 +47,10 @@ A password is not needed, because auth done via SSOwat ;)
* [compare v0.1.0...master](https://github.com/YunoHost-Apps/django_ynh/compare/v0.1.0...master) **dev** * [compare v0.1.0...master](https://github.com/YunoHost-Apps/django_ynh/compare/v0.1.0...master) **dev**
* tbc * tbc
* [v0.1.1 - 28.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/`)
* [v0.1.0 - 28.12.2020](https://github.com/YunoHost-Apps/django_ynh/compare/f578f14...v0.1.0) * [v0.1.0 - 28.12.2020](https://github.com/YunoHost-Apps/django_ynh/compare/f578f14...v0.1.0)
* first working state * first working state
* [23.12.2020](https://github.com/YunoHost-Apps/django_ynh/commit/f578f144a3a6d11d7044597c37d550d29c247773) * [23.12.2020](https://github.com/YunoHost-Apps/django_ynh/commit/f578f144a3a6d11d7044597c37d550d29c247773)

View file

@ -1 +1 @@
__version__ = '0.1.0' __version__ = '0.1.1'

View file

@ -5,7 +5,7 @@
"description": { "description": {
"en": "Glue code to package django projects as yunohost apps." "en": "Glue code to package django projects as yunohost apps."
}, },
"version": "0.1.0~ynh1", "version": "0.1.1~ynh1",
"url": "https://github.com/jedie/django_ynh", "url": "https://github.com/jedie/django_ynh",
"license": "GPL-3.0", "license": "GPL-3.0",
"maintainer": { "maintainer": {

View file

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "django_ynh" name = "django_ynh"
version = "0.1.0" version = "0.1.1"
description = "Glue code to package django projects as yunohost apps." description = "Glue code to package django projects as yunohost apps."
authors = ["JensDiemer <git@jensdiemer.de>"] authors = ["JensDiemer <git@jensdiemer.de>"]
license = "GPL" license = "GPL"

View file

@ -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" pkg_dependencies="build-essential python3-dev python3-pip python3-venv git postgresql postgresql-contrib"
# To install/upgrade this project via pip: # To install/upgrade this project via pip:
pip_install_string="django_ynh==0.1.0" pip_install_string="django_ynh==0.1.1"
#================================================= #=================================================
# Redis HELPERS # Redis HELPERS