File tree 6 files changed +11
-6
lines changed
6 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 3
3
## Change History
4
4
All notable changes to the Databricks Labs Data Generator will be documented in this file.
5
5
6
+ ### Version 0.3.6
7
+
6
8
#### Changed
7
9
* Updated readme to include details on which versions of Databricks runtime support Unity Catalog ` shared ` access mode.
8
10
* Updated code to use default parallelism of 200 when using a shared Spark session
9
11
* Updated code to use Spark's SQL function ` element_at ` instead of array indexing due to incompatibility
10
12
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
11
16
12
17
### Version 0.3.5
13
18
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ details of use and many examples.
64
64
65
65
Release notes and details of the latest changes for this specific release
66
66
can be found in the GitHub repository
67
- [ here] ( https://github.com/databrickslabs/dbldatagen/blob/release/v0.3.5 /CHANGELOG.md )
67
+ [ here] ( https://github.com/databrickslabs/dbldatagen/blob/release/v0.3.6 /CHANGELOG.md )
68
68
69
69
# Installation
70
70
@@ -83,7 +83,7 @@ contains details of installation using alternative mechanisms.
83
83
84
84
## Compatibility
85
85
The Databricks Labs Data Generator framework can be used with Pyspark 3.1.2 and Python 3.8 or later. These are
86
- compatible with the Databricks runtime 9.1 LTS and later releases. For full Unity Catalog support,
86
+ compatible with the Databricks runtime 10.4 LTS and later releases. For full Unity Catalog support,
87
87
we recommend using Databricks runtime 13.2 or later (Databricks 13.3 LTS or above preferred)
88
88
89
89
For full library compatibility for a specific Databricks Spark release, see the Databricks
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def get_version(version):
34
34
return version_info
35
35
36
36
37
- __version__ = "0.3.5 " # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
37
+ __version__ = "0.3.6 " # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
38
38
__version_info__ = get_version (__version__ )
39
39
40
40
Original file line number Diff line number Diff line change 28
28
author = 'Databricks Inc'
29
29
30
30
# The full version, including alpha/beta/rc tags
31
- release = "0.3.5 " # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
31
+ release = "0.3.6 " # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
32
32
33
33
34
34
# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.3.5
2
+ current_version = 0.3.6
3
3
commit = False
4
4
tag = False
5
5
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+){0,1}(?P<release>\D*)(?P<build>\d*)
Original file line number Diff line number Diff line change 31
31
32
32
setuptools .setup (
33
33
name = "dbldatagen" ,
34
- version = "0.3.5 " ,
34
+ version = "0.3.6 " ,
35
35
author = "Ronan Stokes, Databricks" ,
36
36
description = "Databricks Labs - PySpark Synthetic Data Generator" ,
37
37
long_description = long_description ,
You can’t perform that action at this time.
0 commit comments