Skip to content

Commit 4f841a3

Browse files
Updates for new release version
1 parent 9b7abc4 commit 4f841a3

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,17 @@
33
## Change History
44
All notable changes to the Databricks Labs Data Generator will be documented in this file.
55

6-
### Version 0.3.6
6+
### Version 0.4.0
77

88
#### Changed
99
* Updated readme to include details on which versions of Databricks runtime support Unity Catalog `shared` access mode.
1010
* Updated code to use default parallelism of 200 when using a shared Spark session
1111
* Updated code to use Spark's SQL function `element_at` instead of array indexing due to incompatibility
1212

13+
### Notes
14+
* Ths version marks the changing minimum version of Databricks runtime to 10.4 LTS and later releases.
15+
* While there are no known incompatibilities with Databricks 9.1 LTS, we will not test against this release
16+
1317
### Version 0.3.5
1418

1519
#### Changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ details of use and many examples.
6363

6464
Release notes and details of the latest changes for this specific release
6565
can be found in the GitHub repository
66-
[here](https://github.com/databrickslabs/dbldatagen/blob/release/v0.3.6/CHANGELOG.md)
66+
[here](https://github.com/databrickslabs/dbldatagen/blob/release/v0.4.0/CHANGELOG.md)
6767

6868
# Installation
6969

dbldatagen/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def get_version(version):
3434
return version_info
3535

3636

37-
__version__ = "0.3.6" # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
37+
__version__ = "0.4.0" # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
3838
__version_info__ = get_version(__version__)
3939

4040

docs/source/conf.py

+1-1
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.6" # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
31+
release = "0.4.0" # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
3232

3333

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

python/.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.3.6
2+
current_version = 0.4.0
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

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

0 commit comments

Comments
 (0)