Skip to content

Commit 7d1e0b7

Browse files
authored
0.7.1 release notes (sdv-dev#272)
* Bump version: 0.7.1.dev0 → 0.7.1.dev1 * 0.7.1 release notes
1 parent 350b771 commit 7d1e0b7

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

HISTORY.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# History
22

3+
## v0.7.1 - 2023-02-23
4+
5+
This release fixes a bug that prevented the `CTGAN` model from being saved after sampling.
6+
7+
### Bugs Fixed
8+
9+
* Cannot save CTGANSynthesizer after sampling (TypeError) - Issue [#270](https://github.com/sdv-dev/CTGAN/issues/270) by @pvk-developer
10+
311
## v0.7.0 - 2023-01-20
412

513
This release adds support for python 3.10 and drops support for python 3.6. It also fixes a couple of the most common warnings that were surfacing.

ctgan/__init__.py

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

55
__author__ = 'DataCebo, Inc.'
66
__email__ = 'info@sdv.dev'
7-
__version__ = '0.7.1.dev0'
7+
__version__ = '0.7.1.dev1'
88

99
from ctgan.demo import load_demo
1010
from ctgan.synthesizers.ctgan import CTGAN

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.7.1.dev0
2+
current_version = 0.7.1.dev1
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<candidate>\d+))?

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,6 @@
117117
test_suite='tests',
118118
tests_require=tests_require,
119119
url='https://github.com/sdv-dev/CTGAN',
120-
version='0.7.1.dev0',
120+
version='0.7.1.dev1',
121121
zip_safe=False,
122122
)

0 commit comments

Comments
 (0)