Skip to content

Commit

Permalink
v3.3.5 (2019-04-22)
Browse files Browse the repository at this point in the history
- [Feature] Pluggable LMS/CMS/forum
- [Improvement] Safer environment overwrite. Thanks @silviot! 馃憪
- [Security] Fix Jinja2 vulnerability
- [Improvement] Improve CLI cold start performance
- [Improvement] Allow uppercase "Y" and "N" as answers to boolean
questions
  • Loading branch information
regisb committed Apr 22, 2019
1 parent 1a94b05 commit f843bd6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,6 +1,6 @@
# Changelog

## Latest
## v3.3.5 (2019-04-22)

- [Feature] Pluggable LMS/CMS/forum
- [Improvement] Safer environment overwrite. Thanks @silviot! 馃憪
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Expand Up @@ -53,17 +53,17 @@ ci-bundle: ## Create bundle and run basic tests
ci-github: ## Upload assets to github
cat docs/release.md > releases/description.md
git log -1 --pretty=format:%b >> releases/description.md
sed -i "s/TUTOR_VERSION/v$$(make -s version)/g" releases/description.md
sed -i "s/TUTOR_VERSION/v$(shell make version)/g" releases/description.md
docker run --rm -e "GITHUB_TOKEN=$$GITHUB_TOKEN" regis/github-release:latest release \
--user regisb \
--repo tutor \
--tag "v$$(make -s version)" \
--name "v$$(make -s version)" \
--tag "v$(shell make version)" \
--name "v$(shell make version)" \
--description "$$(cat releases/description.md)" || true
docker run --rm -e "GITHUB_TOKEN=$$GITHUB_TOKEN" -v "$$(pwd)/dist:/tmp/dist" regis/github-release:latest upload \
--user regisb \
--repo tutor \
--tag "v$$(make -s version)" \
--tag "v$(shell make version)" \
--name "tutor-$$(uname -s)_$$(uname -m)" \
--file /tmp/dist/tutor \
--replace
Expand Down
2 changes: 1 addition & 1 deletion docs/cli_download.rst
Expand Up @@ -2,5 +2,5 @@

.. parsed-literal::
sudo curl -L "\ https\ ://github.com/regisb/tutor/releases/download/|tutor_version|/tutor-$(uname -s)_$(uname -m)" -o /usr/local/bin/tutor
sudo curl -L "\ https\ ://github.com/regisb/tutor/releases/download/v\ |tutor_version|/tutor-$(uname -s)_$(uname -m)" -o /usr/local/bin/tutor
sudo chmod +x /usr/local/bin/tutor
2 changes: 1 addition & 1 deletion tutor/__about__.py
@@ -1 +1 @@
__version__ = "3.3.4"
__version__ = "3.3.5"

0 comments on commit f843bd6

Please sign in to comment.