bump version; update changelog; add video generation of commit history

This commit is contained in:
Tobias Oberstein 2017-03-18 20:49:28 +01:00
parent 2010125945
commit 022d15826e
4 changed files with 47 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
*.mp4
*.pyc
*.pyo
*.dat

View File

@ -140,3 +140,37 @@ find_windows_files:
# on Windows (Git Bash), check for files with Unix lines endings
find_unix_files:
find . -name "*" -exec dos2unix -tv {} \; 2>&1 | grep "Unix"
# sudo apt install gource ffmpeg
gource:
gource \
--path . \
--seconds-per-day 0.15 \
--title "autobahn-python" \
-1280x720 \
--file-idle-time 0 \
--auto-skip-seconds 0.75 \
--multi-sampling \
--stop-at-end \
--highlight-users \
--hide filenames,mouse,progress \
--max-files 0 \
--background-colour 000000 \
--disable-bloom \
--font-size 24 \
--output-ppm-stream - \
--output-framerate 30 \
-o - \
| ffmpeg \
-y \
-r 60 \
-f image2pipe \
-vcodec ppm \
-i - \
-vcodec libx264 \
-preset ultrafast \
-pix_fmt yuv420p \
-crf 1 \
-threads 0 \
-bf 0 \
autobahn-python.mp4

View File

@ -24,4 +24,4 @@
#
###############################################################################
__version__ = u'0.17.2'
__version__ = u'0.17.3'

View File

@ -5,6 +5,17 @@
Changelog
=========
0.17.3
------
`Published 2017-03-18 <https://pypi.python.org/pypi/autobahn/0.17.3`_
* fix: docs for publisher black-/whitelisting based on authid/authrole
* fix: serialization for publisher black-/whitelisting based on authid/authrole
* new: allow to stop auto-reconnecting for Twisted ApplicationRunner
* fix: allow empty realms (router decides) for asyncio ApplicationRunner
0.17.2
------