Skip to content

Commit

Permalink
Falcon-Caching 1.0.0 -> 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zoltan-fedor committed Jan 31, 2022
1 parent 819e6e3 commit a999900
Show file tree
Hide file tree
Showing 7 changed files with 59 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.0
current_version = 1.0.1
commit = False
tag = True
sign_tags = True
Expand Down
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ Changelog
=========


Version 1.0.1
-------------

- Documentation fix - AsyncBackend API reference was missing

Version 1.0.0
-------------

Expand Down
49 changes: 49 additions & 0 deletions docs/api_reference/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,52 @@ SpreadSASLMemcachedCache

.. autoclass:: SpreadSASLMemcachedCache
:members:



AsyncBackends
-------------

.. module:: falcon_caching.async_backends

BaseCache
`````````

.. autoclass:: falcon_caching.async_backends.base.BaseCache
:members:

NullCache
`````````

.. autoclass:: NullCache
:members:

SimpleCache
```````````

.. autoclass:: SimpleCache
:members:

FileSystemCache
```````````````

.. autoclass:: FileSystemCache
:members:

RedisCache
``````````

.. autoclass:: Redis
:members:

RedisSentinelCache
``````````````````

.. autoclass:: RedisSentinel
:members:

MemcachedCache
``````````````

.. autoclass:: MemcachedCache
:members:
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
# -- Project information -----------------------------------------------------

project = 'Falcon-Caching'
copyright = '2020, Zoltan Fedor'
copyright = '2022, Zoltan Fedor'
author = 'Zoltan Fedor'

# The full version, including alpha/beta/rc tags
release = '1.0.0'
release = '1.0.1'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Welcome to Falcon-Caching's documentation!
==========================================

Version: 1.0.0
Version: 1.0.1

Falcon-Caching adds cache support to the
`Falcon web framework <https://github.com/falconry/falcon>`_.
Expand Down
2 changes: 1 addition & 1 deletion falcon_caching/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
""" Falcon-Caching - a caching module for the Falcon web framework
"""

__version__ = "1.0.0"
__version__ = "1.0.1"

from falcon_caching.cache import Cache
from falcon_caching.async_cache import AsyncCache
8 changes: 0 additions & 8 deletions falcon_caching/async_backends/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,6 @@
from falcon_caching.async_backends.redis import Redis, RedisSentinel
from falcon_caching.async_backends.simple import SimpleCache

try:
from falcon_caching.async_backends.uwsgicache import UWSGICache

has_UWSGICache = True
except ImportError:
has_UWSGICache = False

__all__ = (
"null",
"simple",
Expand Down Expand Up @@ -109,7 +102,6 @@ def uwsgi(config, args, kwargs):
)



def memcached(config, args, kwargs):
args.append(config["CACHE_MEMCACHED_SERVERS"])
kwargs.update(dict(key_prefix=config["CACHE_KEY_PREFIX"]))
Expand Down

0 comments on commit a999900

Please sign in to comment.