Skip to content

Commit

Permalink
Increase patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
quiqueporta committed May 10, 2024
1 parent eb9ff62 commit af96f12
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 3.0.1 (2024-05-10)

- Remove unused imports

## 3.0.0 (2024-04-13)

- Use python dataclass to create ValueObject
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Value Object

![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)
![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)

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

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

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

## New version 3.0
## New version 3.x

This new version is a complete rewrite of the library, now it uses data classes to define the value objects.
With this change we can use type hints to define the fields and the library will take care of the rest.
Expand Down
2 changes: 1 addition & 1 deletion simple_value_object/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from .value_object import ValueObject
from .decorators import invariant

VERSION = (3, 0, 0, "final")
VERSION = (3, 0, 1, "final")
__version__ = VERSION


Expand Down

0 comments on commit af96f12

Please sign in to comment.