bump version to 0.6.0
This commit is contained in:
@ -1,5 +1,35 @@
|
||||
# Change log
|
||||
|
||||
## Version 0.6.0 (2022/03/27)
|
||||
|
||||
This version introduces some changes on [user registration](https://samr1.github.io/FitTrackee/features.html#account-preferences).
|
||||
From now on, a user needs to confirm his account after registration (an email with confirmation instructions is sent after registration).
|
||||
|
||||
|
||||
### Issues Closed
|
||||
|
||||
#### Features
|
||||
|
||||
* [#155](https://github.com/SamR1/FitTrackee/issues/155) - Improve user registration
|
||||
* [#106](https://github.com/SamR1/FitTrackee/issues/106) - Allow user to update email
|
||||
|
||||
#### Bugs Fixed
|
||||
|
||||
* [#169](https://github.com/SamR1/FitTrackee/issues/169) - user picture is not refreshed after update
|
||||
|
||||
### Pull Requests
|
||||
|
||||
#### Bugs Fixed
|
||||
|
||||
* [#161](https://github.com/SamR1/FitTrackee/pull/161) - Minor translation issue on 'Farthest'
|
||||
* [#160](https://github.com/SamR1/FitTrackee/pull/160) - Minor translation issue on APP_ERROR
|
||||
|
||||
Thanks to @Fmstrat
|
||||
|
||||
In this release 3 issues were closed.
|
||||
**Note:** This release contains database migration (see upgrade instructions in [documentation](https://samr1.github.io/FitTrackee/installation.html#upgrade))
|
||||
|
||||
|
||||
## Version 0.5.7 (2022/02/13)
|
||||
|
||||
This release contains several fixes including security fixes.
|
||||
|
@ -59,7 +59,12 @@ Workouts
|
||||
|
||||
Account & preferences
|
||||
^^^^^^^^^^^^^^^^^^^^^
|
||||
- A user can create, update and deleted his account
|
||||
- A user can create, update and deleted his account.
|
||||
- After registration, the user account is inactive and an email with confirmation instructions is sent to activate it. A user with an inactive account cannot log in. (*new in 0.6.0*)
|
||||
|
||||
.. note::
|
||||
The command line to add admin rights activates the account if it is inactive.
|
||||
|
||||
- A user can set language, timezone and first day of week.
|
||||
- A user can reset his password (*new in 0.3.0*)
|
||||
- A user can change his email address (*new in 0.6.0*)
|
||||
|
@ -292,7 +292,7 @@ For instance, copy and update ``.env`` file from ``.env.example`` and source the
|
||||
|
||||
- Open http://localhost:3000 and register
|
||||
|
||||
- To set admin rights to the newly created account, use the following command:
|
||||
- To set admin rights to the newly created account, use the following command line:
|
||||
|
||||
.. code:: bash
|
||||
|
||||
@ -354,12 +354,14 @@ Dev environment
|
||||
|
||||
- Open http://localhost:3000 and register
|
||||
|
||||
- To set admin rights to the newly created account, use the following command:
|
||||
- To set admin rights to the newly created account, use the following command line:
|
||||
|
||||
.. code:: bash
|
||||
|
||||
$ make set-admin USERNAME=<username>
|
||||
|
||||
.. note::
|
||||
If the user account is inactive, it activates it.
|
||||
|
||||
Production environment
|
||||
""""""""""""""""""""""
|
||||
@ -367,13 +369,13 @@ Production environment
|
||||
.. warning::
|
||||
| Note that FitTrackee is under heavy development, some features may be unstable.
|
||||
|
||||
- Download the last release (for now, it is the release v0.5.7):
|
||||
- Download the last release (for now, it is the release v0.6.0):
|
||||
|
||||
.. code:: bash
|
||||
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.5.7.tar.gz
|
||||
$ tar -xzf v0.5.7.tar.gz
|
||||
$ mv FitTrackee-0.5.7 FitTrackee
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.6.0.tar.gz
|
||||
$ tar -xzf v0.6.0.tar.gz
|
||||
$ mv FitTrackee-0.6.0 FitTrackee
|
||||
$ cd FitTrackee
|
||||
|
||||
- Create **.env** from example and update it
|
||||
@ -400,12 +402,14 @@ Production environment
|
||||
|
||||
- Open http://localhost:5000 and register
|
||||
|
||||
- To set admin rights to the newly created account, use the following command:
|
||||
- To set admin rights to the newly created account, use the following command line:
|
||||
|
||||
.. code:: bash
|
||||
|
||||
$ make set-admin USERNAME=<username>
|
||||
|
||||
.. note::
|
||||
If the user account is inactive, it activates it.
|
||||
|
||||
Upgrade
|
||||
~~~~~~~
|
||||
@ -489,13 +493,13 @@ Prod environment
|
||||
|
||||
- Change to the directory where FitTrackee directory is located
|
||||
|
||||
- Download the last release (for now, it is the release v0.5.7) and overwrite existing files:
|
||||
- Download the last release (for now, it is the release v0.6.0) and overwrite existing files:
|
||||
|
||||
.. code:: bash
|
||||
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.5.7.tar.gz
|
||||
$ tar -xzf v0.5.7.tar.gz
|
||||
$ cp -R FitTrackee-0.5.7/* FitTrackee/
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.6.0.tar.gz
|
||||
$ tar -xzf v0.6.0.tar.gz
|
||||
$ cp -R FitTrackee-0.6.0/* FitTrackee/
|
||||
$ cd FitTrackee
|
||||
|
||||
- Update **.env** if needed (see `Environment variables <installation.html#environment-variables>`__).
|
||||
@ -658,12 +662,15 @@ Open http://localhost:5000 and register.
|
||||
|
||||
Open http://localhost:8025 to access `MailHog interface <https://github.com/mailhog/MailHog>`_ (email testing tool)
|
||||
|
||||
- To set admin rights to the newly created account, use the following command:
|
||||
- To set admin rights to the newly created account, use the following command line:
|
||||
|
||||
.. code:: bash
|
||||
|
||||
$ make docker-set-admin USERNAME=<username>
|
||||
|
||||
.. note::
|
||||
If the user account is inactive, it activates it.
|
||||
|
||||
- To stop **Fittrackee**:
|
||||
|
||||
.. code-block:: bash
|
||||
|
Reference in New Issue
Block a user