Skip to content

Commit b4dc842

Browse files
authored
Merge pull request #214 from microsoft/feature/scalar-composed-types
Feature/scalar composed types
2 parents 9b87afe + 5be0e24 commit b4dc842

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.1.0] - 2024-01-25
9+
10+
### Added
11+
- Added an abstract class to mark composed type wrappers and facilitate serialization.
12+
13+
### Changed
14+
815
## [1.0.0] - 2023-10-31
916

1017
### Added

kiota_abstractions/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION: str = "1.0.0"
1+
VERSION: str = "1.1.0"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from abc import ABC
2+
from dataclasses import dataclass
3+
4+
5+
@dataclass
6+
class ComposedTypeWrapper(ABC):
7+
"""
8+
Defines the current class as a composed type wrapper.
9+
"""
10+
pass

0 commit comments

Comments
 (0)