Skip to content

Commit

Permalink
Raised version and added changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
saghul committed Dec 18, 2011
1 parent 9dcca2b commit b84c2b3
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
26 changes: 26 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Version 0.2.0
=============
- Made the default loop a singleton
- Added TTY handle
- Moved all exception definitions to a standalone file
- Added set_membership function to UDP handle
- Added ability to write a list of strings to IOStream objects
- Added ability to send lists of strings on UDP handles
- Added open function to Pipe handle
- Added Process handle
- Added 'data' attribute to all handles for storing arbitrary objects
- Refactored ThreadPool
- Implemented pending_instances function on Pipe handle
- Implemented nodelay, keepalive and simultaneous_accepts functions on TCP handle
- Added 'counters' attribute to Loop
- Added 'poll' function to Loop
- Added new functions to fs module: unlink, mkdir, rmdir, rename, chmod,
fchmod, link, symlink, readlink, chown, fchown, fstat
- Added new functions to util module: uptime, get_process_title,
set_process_title, resident_set_size, interface_addresses, cpu_info


Version 0.1.0
=============
- Initial release

2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include README LICENSE TODO build_inplace *.py
include README LICENSE TODO ChangeLog build_inplace *.py
recursive-include docs *
recursive-include examples *
recursive-include patches *
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setup_libuv import libuv_build_ext, libuv_sdist


__version__ = "0.1.0"
__version__ = "0.2.0"

setup(name = "pyuv",
version = __version__,
Expand Down

0 comments on commit b84c2b3

Please sign in to comment.