Skip to content

Commit

Permalink
Update settings.json, CHANGELOG.rst, and 2 more files...
Browse files Browse the repository at this point in the history
  • Loading branch information
jokiefer committed Jul 6, 2023
1 parent 3552be6 commit 2249f3e
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,8 @@
},
"[python]": {
"editor.defaultFormatter": "ms-python.autopep8"
},
"files.associations": {
"*.yaml": "home-assistant"
}
}
20 changes: 20 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


[0.2.0] - 2023-07-06
--------------------

Added
~~~~~

* to-one relationship update
* to-many relationship update

Fixed
~~~~~

* fixes some json pointers for some parse errors


Changed
~~~~~~~

* implemented custom exception classes to simplify code
* uses constant string values to reduce code duplications

[0.1.0] - 2023-07-04
--------------------
Expand Down
5 changes: 2 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ Implemented Features
~~~~~~~~~~~~~~~~~~~~

* creating, updating, removing multiple resources in a single request (sequential db calls)
* `Updating To-One Relationships <https://jsonapi.org/ext/atomic/#auto-id-updating-to-one-relationships>`_
* `Updating To-Many Relationships <https://jsonapi.org/ext/atomic/#auto-id-updating-to-many-relationships>`_
* error reporting with json pointer to the concrete operation and the wrong attributes


Expand All @@ -29,6 +31,3 @@ ToDo
* permission handling
* use django bulk operations to optimize db execution time
* `local identity (lid) <https://jsonapi.org/ext/atomic/#operation-objects>`_ handling
* `Updating To-One Relationships <https://jsonapi.org/ext/atomic/#auto-id-updating-to-one-relationships>`_
* `Updating To-Many Relationships <https://jsonapi.org/ext/atomic/#auto-id-updating-to-many-relationships>`_

2 changes: 1 addition & 1 deletion atomic_operations/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.1.0"
__version__ = "0.2.0"
VERSION = __version__ # synonym

0 comments on commit 2249f3e

Please sign in to comment.