File tree Expand file tree Collapse file tree 3 files changed +18
-1
lines changed
Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and 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
Original file line number Diff line number Diff line change 1- VERSION : str = "1.0 .0"
1+ VERSION : str = "1.1 .0"
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments