summaryrefslogtreecommitdiff
path: root/CHANGES
blob: 30c849df32c904e10037b3623559c60467fd9532 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
0.3.2
=====
- upgrade to beta.

0.3.1
=====
- py3k compatibility is in-place now, no
  2to3 needed.

0.3.0
=====

- Renamed the project again - to dogpile.core.
  Package has been reorganized so that "dogpile"
  is a pure namespace package.  The base dogpile
  features are now in "dogpile.core".

0.2.2
=====

- expire time of None means "never expire".

0.2.1
=====

- Add new "nameregistry" helper.  Another fixture
  derived from Beaker, this allows the ad-hoc creation of 
  a new Dogpile lock based on a name, where all other
  threads calling that name at the same time will get 
  the same Dogpile lock.  Allows any number of
  logical "dogpile" actions to carry on concurrently
  without any memory taken up outside of those operations.

- To support the use case supported by nameregistry, added
  value_and_created_fn to dogpile.acquire().  The idea 
  is that the value_and_created_fn can return 
  (value, createdtime), so that the creation time of the 
  value can come from the cache, thus eliminating the 
  need for the dogpile lock to hang around persistently.

0.2.0
=====

- change name to lowercase "dogpile".

0.1.0
=====

- initial revision.