1. **Quality of Life**: Allow re-raising on `RedisError`s https://github.com/brainix/pottery/issues/404
2. **Bug Fix**: Don't let `RedisList`s equal tuples
This is how Python behaves:
python
>>> [1, 2, 3] == (1, 2, 3)
False
As of this release, this is also how Pottery behaves:
python
>>> from pottery import RedisList
>>> RedisList((1, 2, 3)) == (1, 2, 3)
False
What's Changed
* Upgrade requirements by brainix in https://github.com/brainix/pottery/pull/393
* Make all of our distributed algorithms consistent by brainix in https://github.com/brainix/pottery/pull/394
* Tighten .__exit__() type annotations by brainix in https://github.com/brainix/pottery/pull/395
* Make .__exit__() return a bool by brainix in https://github.com/brainix/pottery/pull/396
* Don't let RedisLists equal tuples by brainix in https://github.com/brainix/pottery/pull/397
* Clean up RedisList unit tests by brainix in https://github.com/brainix/pottery/pull/398
* Make RedisList unit tests consistent by brainix in https://github.com/brainix/pottery/pull/399
* Write doctest Makefile target by brainix in https://github.com/brainix/pottery/pull/400
* Improve redis_cache() documentation by brainix in https://github.com/brainix/pottery/pull/401
* Test _store_on_self() decorator by brainix in https://github.com/brainix/pottery/pull/403
* Improve Redlock unit test coverage by brainix in https://github.com/brainix/pottery/pull/405
* Raise exception if quorum is impossible by brainix in https://github.com/brainix/pottery/pull/406
**Full Changelog**: https://github.com/brainix/pottery/compare/v1.1.8...v1.2.0