Skip to content

Commit

Permalink
Release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsil committed Jan 16, 2024
1 parent 8084915 commit 9fa0f7a
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions docs/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# Release Notes

## 0.4.0

### Added

- New `run_sync` allowing to run sync operations within Mongoz.

### Changed

- Deprecating internal settings from Pydantic in favour of [Dymmond Settings](https://settings.dymmond.com).

#### Breaking changes

Mongoz now uses [Dymmond Settings](https://settings.dymmond.com) which this simply affects the way the
settings module is loaded. Prior to version 1.3.0 it was like this:

```python
MONGOZ_SETTINGS_MODULE=...
```

**From version 1.3.0 is**:

```python
SETTINGS_MODULE=...
```

The rest remains as it. More information about [how to use it in the official documentation](https://settings.dymmond.com/#how-to-use-it_1).

## 0.3.3

### Fix
Expand Down
2 changes: 1 addition & 1 deletion mongoz/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.3.3"
__version__ = "0.4.0"

from .conf import settings
from .conf.global_settings import MongozSettings
Expand Down

0 comments on commit 9fa0f7a

Please sign in to comment.