summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES6
-rw-r--r--README6
-rw-r--r--blinker/__init__.py2
3 files changed, 13 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 1b2e2ec..fce8ca6 100644
--- a/CHANGES
+++ b/CHANGES
@@ -3,6 +3,12 @@ Blinker Changelog
=================
+Version 1.3
+-----------
+
+Unreleased
+
+
Version 1.2
-----------
diff --git a/README b/README
index a951521..3431db3 100644
--- a/README
+++ b/README
@@ -35,6 +35,12 @@ Blinker requires Python 2.4 or higher, Python 3.0 or higher, or Jython 2.5 or hi
Changelog Summary
-----------------
+1.2 (October 26, 2011)
+ - Added Signal.receiver_connected and
+ Signal.receiver_disconnected per-Signal signals.
+ - Deprecated the global 'receiver_connected' signal.
+ - Verified Python 3.2 support (no changes needed!)
+
1.1 (July 21, 2010)
- Added ``@signal.connect_via(sender)`` decorator
- Added ``signal.connected_to`` shorthand name for the
diff --git a/blinker/__init__.py b/blinker/__init__.py
index b979497..2016746 100644
--- a/blinker/__init__.py
+++ b/blinker/__init__.py
@@ -17,4 +17,4 @@ __all__ = [
]
-__version__ = '1.2'
+__version__ = '1.3dev'