Skip to content

Commit e7e3fac

Browse files
chore: new minor version
1 parent 84e3bd0 commit e7e3fac

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

CHANGES.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Release notes
22

3+
## 1.8.0
4+
May 31, 2025
5+
6+
- Add **add** special method into _Executor_ class
7+
- Add **type** property on _Manager_ class
8+
- Add **ExecutorDataError** class
9+
- Add **reset** method into _Report_ class
10+
- Add **clone** method into _DataObject_ class
11+
- Add **clone** method into _Report_ class
12+
- Add **column** method on _DataObject_ class
13+
- Add **subset** method on _DataAdapters_ class
14+
- Add **subset** function
15+
- Add _try/except_ into **send** method on _ReportBook_ class
16+
- Add **sort** method into _DataAdapters_ class
17+
- Add **sort** function
18+
- Add **sort**, **subset** and **subset** data tools
19+
- Make _report_ attribute into property on _Report_ class
20+
- Use _remove_duplicates_ method on **deduplicate** functions
21+
- Change behavior of _column_ parameter into **filter** function on _Executor_ class
22+
323
## 1.7.0
424
Apr 19, 2024
525

@@ -14,7 +34,6 @@ Apr 19, 2024
1434
- Add **deduplicate** method into _DataAdapters_ class
1535
- Add **iter** method into _DataAdapters_ class
1636
- Add **getitem** method into _DataAdapters_ class
17-
- Add **getitem** method into _DataAdapters_ class
1837
- Add **repr** and **str** function into _DataPrinters_ class
1938
- Add **average** method into _DataPrinters_ class
2039
- Add **most_common** method into _DataPrinters_ class

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
author = "Matteo Guadrini"
2626

2727
# The full version, including alpha/beta/rc tags
28-
release = "1.7.0"
28+
release = "1.8.0"
2929

3030
# -- General configuration ---------------------------------------------------
3131

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pyreports"
7-
version = "1.7.0"
7+
version = "1.8.0"
88
readme = "README.md"
99
license = { text = "GNU General Public License v3.0" }
1010
keywords = ['pyreports', 'reports', 'report', 'csv', 'yaml', 'export',

pyreports/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
"""Build complex reports from/to various formats."""
2424

25-
__version__ = "1.7.0"
25+
__version__ = "1.8.0"
2626

2727
from .io import manager, READABLE_MANAGER, WRITABLE_MANAGER # noqa: F401
2828
from .core import Executor, Report, ReportBook # noqa: F401

0 commit comments

Comments
 (0)