diff --git a/satella/coding/structures.py b/satella/coding/structures.py
index 42a118f459a9424ed6052025980744e104d60ed7..001afc2d5d8cce0a16b465bae3fdfe1015819aff 100644
--- a/satella/coding/structures.py
+++ b/satella/coding/structures.py
@@ -263,7 +263,7 @@ class TimeBasedHeap(Heap):
         Items will be removed from heap
         :return: list of tuple(timestamp::float, item)
         """
-        return list(self.pop_less_than(timestamp))
+        return list(Heap.pop_less_than(self, timestamp))
 
     def remove(self, item):
         """
diff --git a/setup.py b/setup.py
index 478d348200388c724adae79f432e14e64559fac4..95ce08f2381315ba2f4ead8f639d5fe971003e83 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@
 from setuptools import setup, find_packages
 
 setup(name='satella',
-      version='2.0.11rc1',
+      version='2.0.11',
       description=u'Utilities for writing servers in Python',
       author=u'Piotr Maślanka',
       author_email='piotrm@smok.co',