Skip to content

Commit

Permalink
update changelog, doc and examples
Browse files Browse the repository at this point in the history
  • Loading branch information
VigneshVSV committed Aug 9, 2024
1 parent 3d3c8c2 commit f20ffc8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Security
- cookie auth & its specification in TD

## [v0.2.2] - 2024-08-09

- thing control panel works better with the server side and support observable properties
- `ObjectProxy` client API has been improved to resemble WoT operations better, for examplem `get_property` is now
called `read_property`, `set_properties` is now called `write_multiple_properties`.
- `ObjectProxy` client reliability for poorly written server side actions improved

## [v0.2.1] - 2024-07-21

### Added
Expand Down
2 changes: 1 addition & 1 deletion doc
Submodule doc updated from 68e1be to a06486
2 changes: 1 addition & 1 deletion tests/test_property.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def test_4_db_operations(self):
self.assertEqual(thing.db_commit_number_prop, TestThing.db_commit_number_prop.default)

# check db init prop with a different value in database apart from default
thing.db_engine.write_property('db_init_int_prop', 101)
thing.db_engine.set_property('db_init_int_prop', 101)
del thing
thing = TestThing(instance_name='test-db-operations', use_default_db=True, log_level=logging.WARN)
self.assertEqual(thing.db_init_int_prop, 101)
Expand Down

0 comments on commit f20ffc8

Please sign in to comment.