Skip to content

Commit af96f12

Browse files
committed
Increase patch version
1 parent eb9ff62 commit af96f12

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 3.0.1 (2024-05-10)
4+
5+
- Remove unused imports
6+
37
## 3.0.0 (2024-04-13)
48

59
- Use python dataclass to create ValueObject

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Value Object
22

3-
![Version number](https://img.shields.io/badge/version-3.0.0-blue.svg) ![License MIT](https://img.shields.io/github/license/quiqueporta/simple-value-object) ![Python Version](https://img.shields.io/badge/python-3.7,_3.8,_3.9,_3.10,3.11,3.12-blue.svg)
3+
![Version number](https://img.shields.io/badge/version-3.0.1-blue.svg) ![License MIT](https://img.shields.io/github/license/quiqueporta/simple-value-object) ![Python Version](https://img.shields.io/badge/python-3.7,_3.8,_3.9,_3.10,3.11,3.12-blue.svg)
44

55
Based on Ruby Gem by [NoFlopSquad](https://github.com/noflopsquad/value-object)
66

@@ -9,7 +9,7 @@ i.e. two value objects are equal when they have the same value, not necessarily
99

1010
[Wikipedia](http://en.wikipedia.org/wiki/Value_object)
1111

12-
## New version 3.0
12+
## New version 3.x
1313

1414
This new version is a complete rewrite of the library, now it uses data classes to define the value objects.
1515
With this change we can use type hints to define the fields and the library will take care of the rest.

simple_value_object/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from .value_object import ValueObject
22
from .decorators import invariant
33

4-
VERSION = (3, 0, 0, "final")
4+
VERSION = (3, 0, 1, "final")
55
__version__ = VERSION
66

77

0 commit comments

Comments
 (0)