Skip to content

Commit

Permalink
⬆️ Prepare for release 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsils committed Jan 3, 2023
1 parent e500797 commit f1fe3be
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion asyncz/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.3"
__version__ = "0.1.4"
8 changes: 8 additions & 0 deletions docs/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Release Notes

## 0.1.4

January 3, 2023

### Fix

- Store module imports causing issues internally.

## 0.1.3

December 30, 2022
Expand Down
6 changes: 3 additions & 3 deletions docs/stores.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ stateless tasks or tasks that do not require some sort of cache.
**Store Alias** - `memory`

```python
from asyncz.stores import MemoryStore
from asyncz.stores.memory import MemoryStore
```

## RedisStore

**Store Alias** - `redis`

```python
from asyncz.stores import RedisStore
from asyncz.stores.redis import RedisStore
```

### Parameters
Expand All @@ -57,7 +57,7 @@ highest available.
**Store Alias** - `mongo`

```python
from asyncz.stores import MongoDBStore
from asyncz.stores.mongo import MongoDBStore
```

### Parameters
Expand Down

0 comments on commit f1fe3be

Please sign in to comment.