bump version to 0.5.3

This commit is contained in:
Sam
2022-01-01 19:44:45 +01:00
parent 86b7ccda6d
commit cd21403c39
46 changed files with 1546 additions and 1554 deletions

View File

@ -1,5 +1,17 @@
# Change log
## Version 0.5.3 (2022/01/01)
### Issues Closed
#### Bugs Fixed
* [#129](https://github.com/SamR1/FitTrackee/issues/129) - Display only active sports when editing a workout
* [#127](https://github.com/SamR1/FitTrackee/issues/127) - parse_email_url() can't validate a legitimate EMAIL_URI such as "smtp://localhost:25"
In this release 2 issues were closed.
## Version 0.5.2 (2021/12/19)
### Issues Closed
@ -9,7 +21,7 @@
* [#123](https://github.com/SamR1/FitTrackee/issues/123) - Allow user to reset preferences for a sport
* [#121](https://github.com/SamR1/FitTrackee/issues/121) - Add activity : snowshoes
In this release 2 issue were closed.
In this release 2 issues were closed.
**Note:** This release contains database migration.
@ -23,7 +35,7 @@ In this release 2 issue were closed.
* [#115](https://github.com/SamR1/FitTrackee/issues/115) - Add option to download the GPX file of a Workout
* [#5](https://github.com/SamR1/FitTrackee/issues/5) - Display a chart with average speed
In this release 3 issue were closed.
In this release 3 issues were closed.
## Version 0.5.0 (2021/11/14)

View File

@ -30,7 +30,7 @@ Table of contents
=================
.. toctree::
:maxdepth: 2
:maxdepth: 1
features
installation

View File

@ -26,7 +26,7 @@ Prerequisites
- API key from `Dark Sky <https://darksky.net/dev>`__ [not mandatory]
- SMTP provider
- `Yarn <https://yarnpkg.com>`__ (for development only)
- Docker (for development only, to start `MailHog <https://github.com/mailhog/MailHog>`__ or for evaluation purposes)
- Docker and Docker Compose (for development or evaluation purposes)
.. note::
| The following steps describe an installation on Linux systems (tested
@ -396,13 +396,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.0):
- Download the last release (for now, it is the release v0.5.3):
.. code:: bash
$ wget https://github.com/SamR1/FitTrackee/archive/v0.5.0.tar.gz
$ tar -xzf v0.5.0.tar.gz
$ mv FitTrackee-0.5.0 FitTrackee
$ wget https://github.com/SamR1/FitTrackee/archive/v0.5.3.tar.gz
$ tar -xzf v0.5.3.tar.gz
$ mv FitTrackee-0.5.3 FitTrackee
$ cd FitTrackee
- Create **.env** from example and update it
@ -477,13 +477,13 @@ Prod environment
- Change to the directory where FitTrackee directory is located
- Download the last release (for now, it is the release v0.5.0) and overwrite existing files:
- Download the last release (for now, it is the release v0.5.3) and overwrite existing files:
.. code:: bash
$ wget https://github.com/SamR1/FitTrackee/archive/v0.5.0.tar.gz
$ tar -xzf v0.5.0.tar.gz
$ cp -R FitTrackee-0.5.0/* FitTrackee/
$ wget https://github.com/SamR1/FitTrackee/archive/v0.5.3.tar.gz
$ tar -xzf v0.5.3.tar.gz
$ cp -R FitTrackee-0.5.3/* FitTrackee/
$ cd FitTrackee
- Update **.env** if needed (see `Environment variables <installation.html#environment-variables>`__).