Skip to content

Commit

Permalink
Merge pull request #214 from microsoft/feature/scalar-composed-types
Browse files Browse the repository at this point in the history
Feature/scalar composed types
  • Loading branch information
samwelkanda authored Jan 26, 2024
2 parents 9b87afe + 5be0e24 commit b4dc842
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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).

## [1.1.0] - 2024-01-25

### Added
- Added an abstract class to mark composed type wrappers and facilitate serialization.

### Changed

## [1.0.0] - 2023-10-31

### 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 = "1.0.0"
VERSION: str = "1.1.0"
10 changes: 10 additions & 0 deletions kiota_abstractions/serialization/composed_type_wrapper.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from abc import ABC
from dataclasses import dataclass


@dataclass
class ComposedTypeWrapper(ABC):
"""
Defines the current class as a composed type wrapper.
"""
pass

0 comments on commit b4dc842

Please sign in to comment.