From ad7ce5c90810ba79ce7911a6b5dc2baaebb12c4a Mon Sep 17 00:00:00 2001 From: Federico Capoano Date: Wed, 9 Sep 2020 18:26:56 -0500 Subject: [PATCH] 0.1.0 release --- CHANGES.rst | 19 ++++++++++++++++--- docs/source/general/goals.rst | 2 +- openwisp_radius/__init__.py | 2 +- 3 files changed, 18 insertions(+), 5 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index ac0503e1..fde456f6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,20 @@ Changelog ========= -Version 0.1 [unreleased] ------------------------- +Version 0.1.0 [2020-09-10] +-------------------------- -WIP +- administration web interface +- support for freeradius 3.0 +- multi-tenancy +- REST API +- integration with rlm_rest module of freeradius +- possibility of registering new users via API +- social login support +- mobile phone verification via SMS tokens +- possibility to import users from CSV files +- possibility to generate users for events +- management commands and/or celery tasks to perform + clean up operations and periodic tasks +- possibility to extend the base classes and swap models + to add custom functionality without changing the core code diff --git a/docs/source/general/goals.rst b/docs/source/general/goals.rst index 2af294f9..b57b73ad 100644 --- a/docs/source/general/goals.rst +++ b/docs/source/general/goals.rst @@ -58,7 +58,7 @@ Other goals are listed below: * reuse the django user management logic which is very robust and stable * ensure passwords are hashed with strong algorithms and freeradius can authorize/authenticate using these hashes (that's why we recommend using the - ``rml_rest`` freeradius module with the REST API of openwisp-radius) + ``rlm_rest`` freeradius module with the REST API of openwisp-radius) * integrate openwisp-radius with the rest of the openwisp2 ecosystem * provide good documentation on how to install the project, configure it with freeradius and use its most important features diff --git a/openwisp_radius/__init__.py b/openwisp_radius/__init__.py index 28509d2d..8f8c673e 100644 --- a/openwisp_radius/__init__.py +++ b/openwisp_radius/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 1, 0, 'alpha') +VERSION = (0, 1, 0, 'final') __version__ = VERSION # alias