bump version to 0.7.7

This commit is contained in:
Sam
2022-11-27 12:06:42 +01:00
parent fc46053ff4
commit a577fa0a6b
85 changed files with 7423 additions and 752 deletions

View File

@@ -1,5 +1,26 @@
# Change log
## Version 0.7.7 (2022/11/27)
### Features and enhancements
* [#258](https://github.com/SamR1/FitTrackee/issues/258) - Request: parse links in notes area (thanks to @jat255)
### Bugs Fixed
* [PR#271](https://github.com/SamR1/FitTrackee/pull/271) - Fix workouts creation
### Translations
* [PR#273](https://github.com/SamR1/FitTrackee/pull/273) - Init Dutch translations files
### Misc
* [PR#274](https://github.com/SamR1/FitTrackee/pull/274) - Tests parallelization
* [PR#275](https://github.com/SamR1/FitTrackee/pull/275) - Disable worker entry point
**Note:** `fittrackee_worker` command is disabled, please use existing flask-dramatiq CLI (see [documentation](https://samr1.github.io/FitTrackee/installation.html#from-pypi))
## Version 0.7.6 (2022/11/09)
### Translations

View File

@@ -22,6 +22,7 @@ A command line interface (CLI) is available to manage database, OAuth2 tokens an
| The following commands are now deprecated and will be removed in a next version:
| - ``fittrackee_set_admin``
| - ``fittrackee_upgrade_db``
| - ``fittrackee_worker`` (disabled)
Database

View File

@@ -392,11 +392,11 @@ For instance, copy and update ``.env`` file from ``.env.example`` and source the
$ fittrackee
- Start task queue workers if email sending is enabled.
- Start task queue workers if email sending is enabled, with flask-dramatiq CLI:
.. code-block:: bash
$ fittrackee_worker --processes 2
$ flask worker --processes 2
.. note::
| To start application and workers with **systemd** service, see `Deployment <installation.html#deployment>`__
@@ -480,13 +480,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.7.6):
- Download the last release (for now, it is the release v0.7.7):
.. code:: bash
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.6.tar.gz
$ tar -xzf v0.7.6.tar.gz
$ mv FitTrackee-0.7.6 FitTrackee
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.7.tar.gz
$ tar -xzf v0.7.7.tar.gz
$ mv FitTrackee-0.7.7 FitTrackee
$ cd FitTrackee
- Create **.env** from example and update it
@@ -606,13 +606,13 @@ Prod environment
- Change to the directory where FitTrackee directory is located
- Download the last release (for now, it is the release v0.7.6) and overwrite existing files:
- Download the last release (for now, it is the release v0.7.7) and overwrite existing files:
.. code:: bash
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.6.tar.gz
$ tar -xzf v0.7.6.tar.gz
$ cp -R FitTrackee-0.7.6/* FitTrackee/
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.7.tar.gz
$ tar -xzf v0.7.7.tar.gz
$ cp -R FitTrackee-0.7.7/* FitTrackee/
$ cd FitTrackee
- Update **.env** if needed (see `Environment variables <installation.html#environment-variables>`__).