Released 2021-11-30
* Added py.typed for mypy typing support
* Added ability to create sharing links (Issue [16](https://github.com/dariobauer/graph-onedrive/issues/16))
* Improved upload to attempt to retain file creation and modified metadata (Issue [13](https://github.com/dariobauer/graph-onedrive/issues/13))
* Improved developer experience by adding tests, testing automation (tox, GitHub Actions), requirements files, pre-commit improvements
* Input type checks added and error messaging improved
* Fixed bug in sharing links part of the CLI
* Listing a directory now gets all items, even if there are over 200
* New method detail_item_path details an item by providing a drive path instead of id
* New `OneDriveManager` context manager added
* `create` depreciated, use the OneDrive class directly
* `create_from_config_file`, use `OneDrive.from_json` or the `OneDriveManager` context manager
* `save_to_config_file`, use `OneDrive.to_json` or the `OneDriveManager` context manager
* Added basic logging
* Docs, examples, and tests updated to reflect above changes