Skip to content

Commit 37f0c31

Browse files
Feature v34 (#201)
* wip * prep for release * prep for release * wip
1 parent 3bfd5f6 commit 37f0c31

File tree

6 files changed

+17
-10
lines changed

6 files changed

+17
-10
lines changed

CHANGELOG.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,30 @@
33
## Change History
44
All notable changes to the Databricks Labs Data Generator will be documented in this file.
55

6+
### Version 0.3.4
7+
8+
#### Changed
9+
* Modified option to allow for range when specifying `numFeatures` with `structType='array'` to allow generation
10+
of varying number of columns
11+
* When generating multi-column or array valued columns, compute random seed with different name for each column
12+
* Additional build ordering enhancements to reduce circumstances where explicit base column must be specified
13+
14+
#### Added
15+
* Added top level `random` attribute to data generator specification constructor
16+
17+
618
### Version 0.3.3post2
719

820
#### Changed
921
* Fixed use of logger in _version.py and in spark_singleton.py
1022
* Fixed template issues
1123
* Document reformatting and updates, related code comment changes
12-
* Modified option to allow for range when specifying `numFeatures` with `structType='array'` to allow generation
13-
of varying number of columns
14-
* When generating multi-column or array valued columns, compute random seed with different name for each column
1524

1625
### Fixed
1726
* Apply pandas optimizations when generating multiple columns using same `withColumn` or `withColumnSpec`
1827

1928
### Added
2029
* Added use of prospector to build process to validate common code issues
21-
* Added top level `random` attribute to data generator specification constructor
22-
2330

2431

2532
### Version 0.3.2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ details of use and many examples.
6262

6363
Release notes and details of the latest changes for this specific release
6464
can be found in the GitHub repository
65-
[here](https://github.com/databrickslabs/dbldatagen/blob/release/v0.3.3post2/CHANGELOG.md)
65+
[here](https://github.com/databrickslabs/dbldatagen/blob/release/v0.3.4/CHANGELOG.md)
6666

6767
# Installation
6868

dbldatagen/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def get_version(version):
3333
return version_info
3434

3535

36-
__version__ = "0.3.3post2" # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
36+
__version__ = "0.3.4" # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
3737
__version_info__ = get_version(__version__)
3838

3939

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
author = 'Databricks Inc'
2929

3030
# The full version, including alpha/beta/rc tags
31-
release = "0.3.3post2" # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
31+
release = "0.3.4" # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
3232

3333

3434
# -- General configuration ---------------------------------------------------

python/.bumpversion.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.3.3post2
2+
current_version = 0.3.4
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+){0,1}(?P<release>\D*)(?P<build>\d*)

setup.py

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

3232
setuptools.setup(
3333
name="dbldatagen",
34-
version="0.3.3post2",
34+
version="0.3.4",
3535
author="Ronan Stokes, Databricks",
3636
description="Databricks Labs - PySpark Synthetic Data Generator",
3737
long_description=long_description,

0 commit comments

Comments
 (0)