Skip to content

Commit

Permalink
Release 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tych0 committed Jan 20, 2015
1 parent 15d0825 commit ad1692f
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 10 deletions.
29 changes: 27 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,14 +1,39 @@
qtile *.*.*, released YYYY-MM-DD:
qtile 0.9.0, released 2015-01-20:
* !!! Dependency Changes !!!
New dependencies will need to be installed for qtile to work
- drop xpyb for xcffib (XCB bindings)
- drop py2cairo for cairocffi (Cairo bindings)
- drop PyGTK for asyncio (event loop, pangocairo bindings managed
internally)
- qtile still depends on gobject if you want to use anything that uses
dbus (e.g. the mpris widgets or the libnotify widget)
* features
- add Python 3 and pypy support (made possible by dependency changes)
- new layout for vertical monitors
- add startup_once hook, which is called exactly once per session (i.e.
it is not called when qtile is restarted via lazy.restart()). This
eliminates the need for the execute_once() function found in lots of
user configs.
- add a command for showing/hiding the bar (lazy.hide_show_bar())
- warn when a widget's dependencies cannot be imported
- make qtile.log more useful via better warnings in general, including
deprecation and various other warnings that were previously
nonexistent
- new text-polling widget super classes, which enable easy
implementation of various widgets that need to poll things outside
the event loop.
- add man pages
- large documentation update, widget/layout documentation is now
autogenerated from the docstrings
- new ImapWidget for checking imap mailboxes
* bugfixes
-
- change default wmname to "LG3D" (this prevents some java apps from
not working out of the box)
- all code passes flake8
- default log level is now WARNING
- all widgets now use our config framework
- windows with the "About" role float by default
- got rid of a bunch of unnecessary bare except: clauses

qtile 0.8.0, released 2014-08-18:
* features
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Features
Current Release
===============

The current stable version of qtile is 0.8.0, released 2014-08-18. See the
The current stable version of qtile is 0.9.0, released 2015-01-20. See the
`documentation <http://docs.qtile.org/en/latest/manual/install/index.html>`_
for installation instructions.

Expand Down
2 changes: 1 addition & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ qtile (0.9.0-1) UNRELEASED; urgency=low

* Initial release.

-- Tycho Andersen <tycho@tycho.ws> Sat, 13 Sept 2014 18:02:00 -0500
-- Tycho Andersen <tycho@tycho.ws> Tue, 20 Jan 2015 18:10:02 +1300
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __getattr__(cls, name):
# built documents.
#
# The short X.Y version.
version = '0.8.0'
version = '0.9.0'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
4 changes: 2 additions & 2 deletions resources/qsh.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Man page generated from reStructuredText.
.
.TH "QSH" "1" "September 14, 2014" "0.8.0" "Qtile"
.TH "QSH" "1" "January 20, 2015" "0.9.0" "Qtile"
.SH NAME
qsh \- Qtile Documentation
.
Expand Down Expand Up @@ -56,6 +56,6 @@ Bugs can be reported to the issue tracker at \fI\%http://github.com/qtile/qtile\
.SH AUTHOR
Tycho Andersen
.SH COPYRIGHT
2008-2014, Aldo Cortesi and contributers
2008-2015, Aldo Cortesi and contributers
.\" Generated by docutils manpage writer.
.
4 changes: 2 additions & 2 deletions resources/qtile.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Man page generated from reStructuredText.
.
.TH "QTILE" "1" "September 14, 2014" "0.8.0" "Qtile"
.TH "QTILE" "1" "January 20, 2015" "0.9.0" "Qtile"
.SH NAME
qtile \- Qtile Documentation
.
Expand Down Expand Up @@ -79,6 +79,6 @@ Bugs can be reported to the issue tracker at \fI\%http://github.com/qtile/qtile\
.SH AUTHOR
Tycho Andersen
.SH COPYRIGHT
2008-2014, Aldo Cortesi and contributers
2008-2015, Aldo Cortesi and contributers
.\" Generated by docutils manpage writer.
.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

setup(
name="qtile",
version="0.8.0",
version="0.9.0",
description="A pure-Python tiling window manager.",
long_description=long_description,
classifiers=[
Expand Down

0 comments on commit ad1692f

Please sign in to comment.