Skip to content

Commit

Permalink
Updated CHANGELOG and README
Browse files Browse the repository at this point in the history
  • Loading branch information
jonashaag committed Jan 14, 2012
1 parent 741f169 commit 8400911
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 6 additions & 1 deletion CHANGELOG
@@ -1,3 +1,8 @@
1.3 (TBA)
- Unix socket support (contributed by https://github.com/k3d3)
- Fixed 64bit compile errors
- Tickets closed: #35, #36, #38, #40, #43, #44, #45, #49

1.2 (Apr 2011) 1.2 (Apr 2011)
- sendfile() support - sendfile() support
- Python 2.5 compatibility - Python 2.5 compatibility
Expand All @@ -12,7 +17,7 @@
- Fixed a possible inifite loop. Thanks to Alexander Shigin for adivce and tests - Fixed a possible inifite loop. Thanks to Alexander Shigin for adivce and tests
- Split 'bjoern.run' into '.listen' and '.run' while not breaking the old - Split 'bjoern.run' into '.listen' and '.run' while not breaking the old
API (contributed by Sergey Shepelev) API (contributed by Sergey Shepelev)
- Tickets closed: #10, #18, #21, #24, #26, #27 - Tickets closed: #10, #18, #21, #24, #26, #27, #28, #31


1.0 (Dec 2010) 1.0 (Dec 2010)
First release on PyPI First release on PyPI
5 changes: 5 additions & 0 deletions README.rst
Expand Up @@ -13,6 +13,7 @@ featuring
* ~ 1000 lines of C code * ~ 1000 lines of C code
* Memory footprint ~ 600KB * Memory footprint ~ 600KB
* Single-threaded and without coroutines or other crap * Single-threaded and without coroutines or other crap
* Can bind to TCP `host:port` addresses and Unix sockets (thanks @k3d3's!)
* Full persistent connection ("*keep-alive*") support in both HTTP/1.0 and 1.1, * Full persistent connection ("*keep-alive*") support in both HTTP/1.0 and 1.1,
including support for HTTP/1.1 chunked responses including support for HTTP/1.1 chunked responses


Expand Down Expand Up @@ -54,8 +55,12 @@ Usage
~~~~~ ~~~~~
:: ::


# Bind to TCP host/port pair:
bjoern.run(wsgi_application, host, port) bjoern.run(wsgi_application, host, port)


# Bind to Unix socket:
bjoern.run(wsgi_application, 'unix:/path/to/socket')

Alternatively, the mainloop can be run separately:: Alternatively, the mainloop can be run separately::


bjoern.listen(wsgi_application, host, port) bjoern.listen(wsgi_application, host, port)
Expand Down

0 comments on commit 8400911

Please sign in to comment.