summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--python-sdv.spec56
-rw-r--r--sources2
3 files changed, 54 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore
index 4a6673e..ca18b97 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
/sdv-1.0.0.tar.gz
+/sdv-1.0.1.tar.gz
diff --git a/python-sdv.spec b/python-sdv.spec
index 448149f..4094a19 100644
--- a/python-sdv.spec
+++ b/python-sdv.spec
@@ -1,11 +1,11 @@
%global _empty_manifest_terminate_build 0
Name: python-sdv
-Version: 1.0.0
+Version: 1.0.1
Release: 1
Summary: Generate synthetic data for single table, multi table and sequential data
License: BSL-1.1
URL: https://github.com/sdv-dev/SDV
-Source0: https://mirrors.nju.edu.cn/pypi/web/packages/1d/22/67ed3daefd3dca25ea1bdbc0e9d329438fa0ec93f39076e1d720ff0455ad/sdv-1.0.0.tar.gz
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/df/e9/5c58b9901caf56d04291855212abd85c332e193ffd687db8bb37e9b8641e/sdv-1.0.1.tar.gz
BuildArch: noarch
Requires: python3-Faker
@@ -99,6 +99,22 @@ data, including:
integrated solution and your one-stop shop for synthetic data. Or, use the standalone libraries
for specific needs.
# Release Notes
+## 1.0.1 - 2023-04-20
+This release improves the `load_custom_constraint_classes` method by removing the `table_name` parameter and just loading the constraint
+for all tables instead. It also improves some error messages as well as removes some of the warnings that have been surfacing.
+Support for sdtypes is enhanced by resolving a bug that was incorrecttly specifying Faker functions for some of them. Support for datetime formats has also been improved. Finally, the `path` argument in some `save` and `load` methods was changed to `filepath` for consistency.
+### New Features
+* Method load_custom_constraint_classes does not need table_name parameter - Issue [#1354](https://github.com/sdv-dev/SDV/issues/1354) by @R-Palazzo
+* Improve error message for invalid primary keys - Issue [#1341](https://github.com/sdv-dev/SDV/issues/1341) by @R-Palazzo
+* Add functionality to find version add-on - Issue [#1309](https://github.com/sdv-dev/SDV/issues/1309) by @frances-h
+### Bugs Fixed
+* Certain sdtypes cause Faker to raise error - Issue [#1346](https://github.com/sdv-dev/SDV/issues/1346) by @frances-h
+* Change path to filepath for load and save methods - Issue [#1352](https://github.com/sdv-dev/SDV/issues/1352) by @fealho
+* Some datetime formats cause InvalidDataError, even if the datetime matches the format - Issue [#1136](https://github.com/sdv-dev/SDV/issues/1136) by @amontanez24
+### Internal
+* Inequality constraint raises RuntimeWarning (invalid value encountered in log) - Issue [#1275](https://github.com/sdv-dev/SDV/issues/1275) by @frances-h
+* Pandas FutureWarning: Default dtype for Empty Series will be 'object' - Issue [#1355](https://github.com/sdv-dev/SDV/issues/1355) by @R-Palazzo
+* Pandas FutureWarning: Length 1 tuple will be returned - Issue [#1356](https://github.com/sdv-dev/SDV/issues/1356) by @R-Palazzo
## 1.0.0 - 2023-03-28
This is a major release that introduces a new API to the `SDV` aimed at streamlining the process of synthetic data generation! To achieve this, this release includes the addition of several large features.
### Metadata
@@ -786,6 +802,22 @@ data, including:
integrated solution and your one-stop shop for synthetic data. Or, use the standalone libraries
for specific needs.
# Release Notes
+## 1.0.1 - 2023-04-20
+This release improves the `load_custom_constraint_classes` method by removing the `table_name` parameter and just loading the constraint
+for all tables instead. It also improves some error messages as well as removes some of the warnings that have been surfacing.
+Support for sdtypes is enhanced by resolving a bug that was incorrecttly specifying Faker functions for some of them. Support for datetime formats has also been improved. Finally, the `path` argument in some `save` and `load` methods was changed to `filepath` for consistency.
+### New Features
+* Method load_custom_constraint_classes does not need table_name parameter - Issue [#1354](https://github.com/sdv-dev/SDV/issues/1354) by @R-Palazzo
+* Improve error message for invalid primary keys - Issue [#1341](https://github.com/sdv-dev/SDV/issues/1341) by @R-Palazzo
+* Add functionality to find version add-on - Issue [#1309](https://github.com/sdv-dev/SDV/issues/1309) by @frances-h
+### Bugs Fixed
+* Certain sdtypes cause Faker to raise error - Issue [#1346](https://github.com/sdv-dev/SDV/issues/1346) by @frances-h
+* Change path to filepath for load and save methods - Issue [#1352](https://github.com/sdv-dev/SDV/issues/1352) by @fealho
+* Some datetime formats cause InvalidDataError, even if the datetime matches the format - Issue [#1136](https://github.com/sdv-dev/SDV/issues/1136) by @amontanez24
+### Internal
+* Inequality constraint raises RuntimeWarning (invalid value encountered in log) - Issue [#1275](https://github.com/sdv-dev/SDV/issues/1275) by @frances-h
+* Pandas FutureWarning: Default dtype for Empty Series will be 'object' - Issue [#1355](https://github.com/sdv-dev/SDV/issues/1355) by @R-Palazzo
+* Pandas FutureWarning: Length 1 tuple will be returned - Issue [#1356](https://github.com/sdv-dev/SDV/issues/1356) by @R-Palazzo
## 1.0.0 - 2023-03-28
This is a major release that introduces a new API to the `SDV` aimed at streamlining the process of synthetic data generation! To achieve this, this release includes the addition of several large features.
### Metadata
@@ -1470,6 +1502,22 @@ data, including:
integrated solution and your one-stop shop for synthetic data. Or, use the standalone libraries
for specific needs.
# Release Notes
+## 1.0.1 - 2023-04-20
+This release improves the `load_custom_constraint_classes` method by removing the `table_name` parameter and just loading the constraint
+for all tables instead. It also improves some error messages as well as removes some of the warnings that have been surfacing.
+Support for sdtypes is enhanced by resolving a bug that was incorrecttly specifying Faker functions for some of them. Support for datetime formats has also been improved. Finally, the `path` argument in some `save` and `load` methods was changed to `filepath` for consistency.
+### New Features
+* Method load_custom_constraint_classes does not need table_name parameter - Issue [#1354](https://github.com/sdv-dev/SDV/issues/1354) by @R-Palazzo
+* Improve error message for invalid primary keys - Issue [#1341](https://github.com/sdv-dev/SDV/issues/1341) by @R-Palazzo
+* Add functionality to find version add-on - Issue [#1309](https://github.com/sdv-dev/SDV/issues/1309) by @frances-h
+### Bugs Fixed
+* Certain sdtypes cause Faker to raise error - Issue [#1346](https://github.com/sdv-dev/SDV/issues/1346) by @frances-h
+* Change path to filepath for load and save methods - Issue [#1352](https://github.com/sdv-dev/SDV/issues/1352) by @fealho
+* Some datetime formats cause InvalidDataError, even if the datetime matches the format - Issue [#1136](https://github.com/sdv-dev/SDV/issues/1136) by @amontanez24
+### Internal
+* Inequality constraint raises RuntimeWarning (invalid value encountered in log) - Issue [#1275](https://github.com/sdv-dev/SDV/issues/1275) by @frances-h
+* Pandas FutureWarning: Default dtype for Empty Series will be 'object' - Issue [#1355](https://github.com/sdv-dev/SDV/issues/1355) by @R-Palazzo
+* Pandas FutureWarning: Length 1 tuple will be returned - Issue [#1356](https://github.com/sdv-dev/SDV/issues/1356) by @R-Palazzo
## 1.0.0 - 2023-03-28
This is a major release that introduces a new API to the `SDV` aimed at streamlining the process of synthetic data generation! To achieve this, this release includes the addition of several large features.
### Metadata
@@ -2128,7 +2176,7 @@ Currently implemented models are:
* First release on PyPI.
%prep
-%autosetup -n sdv-1.0.0
+%autosetup -n sdv-1.0.1
%build
%py3_build
@@ -2168,5 +2216,5 @@ mv %{buildroot}/doclist.lst .
%{_docdir}/*
%changelog
-* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 1.0.0-1
+* Sun Apr 23 2023 Python_Bot <Python_Bot@openeuler.org> - 1.0.1-1
- Package Spec generated
diff --git a/sources b/sources
index f3afeeb..4aa316f 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-0c65b7d18280685aab6bf88eb9d82dff sdv-1.0.0.tar.gz
+137d96e20e10e4778fdff0da57ba24e4 sdv-1.0.1.tar.gz