Skip to content

Commit 651cde3

Browse files
Fix changelog for release
1 parent dcc77eb commit 651cde3

File tree

1 file changed

+44
-26
lines changed

1 file changed

+44
-26
lines changed

CHANGELOG.md

+44-26
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
# CHANGELOG
1+
=======
2+
CHANGES
3+
=======
24

5+
.. towncrier release notes start
36

4-
## 0.12.0 (2023-01-13)
7+
0.12.0 (2023-01-13)
8+
===================
59

610
* Added ``async with`` support to ``BaseCache``.
711
* Added initial typing support.
@@ -16,12 +20,14 @@
1620
* Fixed ``from aiocache import *``.
1721
* Fixed ``.delete()`` when values are falsy.
1822

19-
## 0.11.1 (2019-07-31)
23+
0.11.1 (2019-07-31)
24+
===================
2025

2126
* Don't hardcode import redis and memcached in factory [#461](https://github.com/argaen/aiocache/issues/461) - Manuel Miranda
2227

2328

24-
## 0.11.0 (2019-07-31)
29+
0.11.0 (2019-07-31)
30+
===================
2531

2632
* Support str for timeout and ttl [#454](https://github.com/argaen/aiocache/issues/454) - Manuel Miranda
2733

@@ -42,7 +48,8 @@
4248
* Add Cache class factory [#430](https://github.com/argaen/aiocache/issues/430) - Manuel Miranda
4349

4450

45-
## 0.10.1 (2018-11-15)
51+
0.10.1 (2018-11-15)
52+
===================
4653

4754
* Cancel the previous ttl timer if exists when setting a new value in the in-memory cache [#424](https://github.com/argaen/aiocache/issues/424) - Minh Tu Le
4855

@@ -55,12 +62,16 @@
5562
* Format code with black [#410](https://github.com/argaen/aiocache/issues/410) - Manuel Miranda
5663

5764

58-
## 0.10.0 (2018-06-17)
65+
0.10.0 (2018-06-17)
66+
===================
5967

6068
* Cache can be disabled in decorated functions using `cache_read` and `cache_write` [#404](https://github.com/argaen/aiocache/issues/404) - Josep Cugat
6169

6270
* Cache constructor can receive now default ttl [#405](https://github.com/argaen/aiocache/issues/405) - Josep Cugat
63-
## 0.9.1 (2018-04-27)
71+
72+
73+
0.9.1 (2018-04-27)
74+
==================
6475

6576
* Single deploy step [#395](https://github.com/argaen/aiocache/issues/395) - Manuel Miranda
6677

@@ -69,7 +80,8 @@
6980
* Lazy load redis asyncio.Lock [#397](https://github.com/argaen/aiocache/issues/397) - Jordi Soucheiron
7081

7182

72-
## 0.9.0 (2018-04-24)
83+
0.9.0 (2018-04-24)
84+
==================
7385

7486
* Bug #389/propagate redlock exceptions [#394](https://github.com/argaen/aiocache/issues/394) - Manuel Miranda
7587
___aexit__ was returning whether asyncio Event was removed or not. In
@@ -91,7 +103,8 @@ raise always any exception raised from inside_
91103
* Fixed spelling error in serializers.py [#371](https://github.com/argaen/aiocache/issues/371) - Jared Shields
92104

93105

94-
## 0.8.0 (2017-11-08)
106+
0.8.0 (2017-11-08)
107+
==================
95108

96109
* Add pypy support in build pipeline [#359](https://github.com/argaen/aiocache/issues/359) - Manuel Miranda
97110

@@ -108,25 +121,24 @@ raise always any exception raised from inside_
108121
* Add key_builder param to caches to customize keys [#315](https://github.com/argaen/aiocache/issues/315) - Manuel Miranda
109122

110123

111-
## 0.7.2 (2017-07-23)
112-
113-
#### Other
124+
0.7.2 (2017-07-23)
125+
==================
114126

115127
* Add key_builder param to caches to customize keys [#310](https://github.com/argaen/aiocache/issues/310) - Manuel Miranda
116128

117129
* Propagate correct message on memcached connector error [#309](https://github.com/argaen/aiocache/issues/309) - Manuel Miranda
118130

119131

120-
121-
## 0.7.1 (2017-07-15)
122-
132+
0.7.1 (2017-07-15)
133+
==================
123134

124135
* Remove explicit loop usages [#305](https://github.com/argaen/aiocache/issues/305) - Manuel Miranda
125136

126137
* Remove bad logging configuration [#304](https://github.com/argaen/aiocache/issues/304) - Manuel Miranda
127138

128139

129-
## 0.7.0 (2017-07-01)
140+
0.7.0 (2017-07-01)
141+
==================
130142

131143
* Upgrade to aioredis 0.3.3. - Manuel Miranda
132144

@@ -152,9 +164,9 @@ and it behaves as expected._
152164

153165
* Removed settings module. - Manuel Miranda
154166

155-
## 0.6.1 (2017-06-12)
156167

157-
#### Other
168+
0.6.1 (2017-06-12)
169+
==================
158170

159171
* Removed connection reusage for decorators [#267](https://github.com/argaen/aiocache/issues/267)- Manuel Miranda (thanks @dmzkrsk)
160172
_when decorated function is costly connections where being kept while
@@ -168,8 +180,8 @@ when saving the keys_
168180
* Updated aioredis (0.3.1) and aiomcache (0.5.2) versions - Manuel Miranda
169181

170182

171-
172-
## 0.6.0 (2017-06-05)
183+
0.6.0 (2017-06-05)
184+
==================
173185

174186
#### New
175187

@@ -208,7 +220,8 @@ there is big expected concurrency for that given function_
208220
cache if needed (same behavior for aiomcache and ofc memory)_
209221

210222

211-
## 0.5.2
223+
0.5.2
224+
=====
212225

213226
* Reuse connection context manager [#225](https://github.com/argaen/aiocache/issues/225) [argaen]
214227
* Add performance footprint tests [#228](https://github.com/argaen/aiocache/issues/228) [argaen]
@@ -217,13 +230,15 @@ cache if needed (same behavior for aiomcache and ofc memory)_
217230
* Added performance concurrency tests [#216](https://github.com/argaen/aiocache/issues/216) [argaen]
218231

219232

220-
## 0.5.1
233+
0.5.1
234+
=====
221235

222236
* Deprecate settings module [#215](https://github.com/argaen/aiocache/issues/215) [argaen]
223237
* Decorators support introspection [#213](https://github.com/argaen/aiocache/issues/213) [argaen]
224238

225239

226-
## 0.5.0 (2017-04-29)
240+
0.5.0 (2017-04-29)
241+
==================
227242

228243
* Removed pool reusage for redis. A new one
229244
is created for each instance [argaen]
@@ -249,7 +264,8 @@ cache if needed (same behavior for aiomcache and ofc memory)_
249264
when using DefaultSerializer [#191](https://github.com/argaen/aiocache/issues/191) [argaen]
250265

251266

252-
## 0.3.3 (2017-04-06)
267+
0.3.3 (2017-04-06)
268+
==================
253269

254270
* Added CHANGELOG and release process [#172](https://github.com/argaen/aiocache/issues/172) [argaen]
255271
* Added pool_min_size pool_max_size to redisbackend [#167](https://github.com/argaen/aiocache/issues/167) [argaen]
@@ -258,13 +274,15 @@ cache if needed (same behavior for aiomcache and ofc memory)_
258274
* Cache instance in decorators is built in every call [#135](https://github.com/argaen/aiocache/issues/135) [argaen]
259275

260276

261-
## 0.3.1 (2017-02-13)
277+
0.3.1 (2017-02-13)
278+
==================
262279

263280
* Changed add redis to use set with not existing flag [#119](https://github.com/argaen/aiocache/issues/119) [argaen]
264281
* Memcached multi_set with ensure_future [#114](https://github.com/argaen/aiocache/issues/114) [argaen]
265282

266283

267-
## 0.3.0 (2017-01-12)
284+
0.3.0 (2017-01-12)
285+
==================
268286

269287
* Fixed asynctest issues for timeout tests [#109](https://github.com/argaen/aiocache/issues/109) [argaen]
270288
* Created new API class [#108](https://github.com/argaen/aiocache/issues/108)

0 commit comments

Comments
 (0)