Skip to content

Commit

Permalink
Merge pull request #116 from microsoft/chore/update-project-dependecies
Browse files Browse the repository at this point in the history
Chore/update project dependencies
  • Loading branch information
samwelkanda authored Sep 1, 2023
2 parents 915a12a + 085377e commit 41c2705
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,22 @@ All notable changes to this project will be documented in this file.

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.8.0] - 2023-08-24000

## [0.8.1] - 2023-09-01

### Added
- Added opentelemetry to project dependencies.

### Changed

## [0.8.0] - 2023-08-24

### Added
- Added opentelemetry to support observability.
- Added an additional parameter to authentication methods to carry contextual information.

### Changed

## [0.7.1] - 2023-08-09

### Added
Expand Down
2 changes: 1 addition & 1 deletion kiota_abstractions/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION: str = "0.8.0"
VERSION: str = "0.8.1"
4 changes: 1 addition & 3 deletions kiota_abstractions/store/backing_store_factory_singleton.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
# See License in the project root for license information.
# ------------------------------------------------------------------------------

from typing_extensions import Self

from kiota_abstractions.store.backing_store_factory import BackingStoreFactory
from kiota_abstractions.store.in_memory_backing_store_factory import InMemoryBackingStoreFactory

Expand Down Expand Up @@ -37,7 +35,7 @@ def __new__(cls, *args, **kwargs):
return cls.__instance

@classmethod
def get_instance(cls) -> Self:
def get_instance(cls):
"""
Returns the instance of the class.
"""
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ name = "microsoft-kiota-abstractions"
authors = [{name = "Microsoft", email = "[email protected]"}]
dependencies = [
"uritemplate >=4.1.1",
"opentelemetry-api >=1.19.0",
"opentelemetry-sdk >=1.19.0",
]
license = {file = "LICENSE"}
readme = "README.md"
Expand Down

0 comments on commit 41c2705

Please sign in to comment.