From 70eb61a9c7d34bcd674dee9144b4417c1f674551 Mon Sep 17 00:00:00 2001 From: Marc Sibson Date: Wed, 2 Mar 2016 22:00:36 -0800 Subject: [PATCH] prepare for release --- DEVELOP.txt | 12 ++++++++++++ HISTORY.txt | 9 +++++++-- setup.py | 2 +- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/DEVELOP.txt b/DEVELOP.txt index a86d70a5..ae135925 100644 --- a/DEVELOP.txt +++ b/DEVELOP.txt @@ -9,3 +9,15 @@ The functional tests require libvncserver/examples to be on your path before running:: nosetests tests/functional + + +Release +-------- + 1. update setup.py with version + 1. ensure HISTORY contains correct version + 1. git commit -m"set version" + 1. git tag v + 1. python setup.py sdist bdist_wheel upload + 1. add new section to HISTORY + 1. update setup.py version + 1. blog post/twitter diff --git a/HISTORY.txt b/HISTORY.txt index 21ca2575..234a734f 100644 --- a/HISTORY.txt +++ b/HISTORY.txt @@ -1,6 +1,11 @@ -0.9.1 (unreleased) +0.10.0 (2016-03-03) ------------------ - - + - drop offical 2.6 support, it'll probably work for a while still + - use frombytes rather than fromstring for compatibility with PIL + - vnclog works with password protected servers using --password-required + - exit more reliably after an error + - use increatmental frameBufferUpdateRequests, appears to be compatible with more servers + - include basic version negotiation with servers, thanks Ezra Bühler 0.9.0 (2015-05-08) ------------------ diff --git a/setup.py b/setup.py index ee7686b8..2e6cdead 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='vncdotool', - version='0.9.1.dev0', + version='0.10.0', description='Command line VNC client', install_requires=[ 'Twisted',