From 4bfaa80bd37e71bb2989cca9b05a2ac2ff835c0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Mon, 20 Dec 2021 23:00:07 +0100 Subject: [PATCH] v13.0.1 - [Fix] Missing requirements file in `pip install tutor[full]`. --- CHANGELOG.md | 2 ++ tutor/__about__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d46b38..79a0934 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ Note: Breaking changes between versions are indicated by "💥". ## Unreleased +## v13.0.1 + - [Fix] Missing requirements file in `pip install tutor[full]`. ## v13.0.0 diff --git a/tutor/__about__.py b/tutor/__about__.py index 0cedc7a..05fe16e 100644 --- a/tutor/__about__.py +++ b/tutor/__about__.py @@ -2,7 +2,7 @@ import os # Increment this version number to trigger a new release. See # docs/tutor.html#versioning for information on the versioning scheme. -__version__ = "13.0.0" +__version__ = "13.0.1" # The version suffix will be appended to the actual version, separated by a # dash. Use this suffix to differentiate between the actual released version and