Skip to content

Commit

Permalink
Bump version to 2.1b4
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Feb 11, 2023
1 parent 0e4b357 commit 05477bd
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 3 deletions.
1 change: 0 additions & 1 deletion .python-version

This file was deleted.

1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python 3.11.1
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Added support for Python 3.11.
- Updated `Manager.get()` to be more flexible with positional arguments.
- Added support for passing `frozen=True` to the underlying `dataclass`.

## 2.0 (2022-08-20)

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* macOS: `$ xcode-select --install`
* Linux: [https://www.gnu.org/software/make](https://www.gnu.org/software/make)
* Windows: [https://mingw.org/download/installer](https://mingw.org/download/installer)
* Python: `$ pyenv install`
* Python: `$ asdf install`
* Poetry: [https://poetry.eustace.io/docs/#installation](https://poetry.eustace.io/docs/#installation)
* Graphviz:
* macOS: `$ brew install graphviz`
Expand Down
1 change: 1 addition & 0 deletions docs/api/model.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ The following options can be passed to the `@datafile()` decorator:
| `manual` | `bool` | Synchronize object and file changes manually. | `False` |
| `defaults` | `bool` | Include attributes with default values when serializing. | `False` |
| `infer` | `bool` | Automatically infer new attributes from the file. | `False` |
| `frozen` | `bool` | Freeze the underlying `dataclass` and prevent multiple loads. | `False` |

<sup>1</sup> _By default, synchronized attributes are inferred from the type annotations._

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]

name = "datafiles"
version = "2.1b3"
version = "2.1b4"
description = "File-based ORM for dataclasses."

license = "MIT"
Expand Down

0 comments on commit 05477bd

Please sign in to comment.