File tree Expand file tree Collapse file tree 6 files changed +11
-6
lines changed Expand file tree Collapse file tree 6 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 33## Change History
44All notable changes to the Databricks Labs Data Generator will be documented in this file.
55
6+ ### Version 0.3.6
7+
68#### Changed
79* Updated readme to include details on which versions of Databricks runtime support Unity Catalog ` shared ` access mode.
810* Updated code to use default parallelism of 200 when using a shared Spark session
911* Updated code to use Spark's SQL function ` element_at ` instead of array indexing due to incompatibility
1012
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
1116
1217### Version 0.3.5
1318
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ details of use and many examples.
6464
6565Release notes and details of the latest changes for this specific release
6666can 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 )
6868
6969# Installation
7070
@@ -83,7 +83,7 @@ contains details of installation using alternative mechanisms.
8383
8484## Compatibility
8585The 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,
8787we recommend using Databricks runtime 13.2 or later (Databricks 13.3 LTS or above preferred)
8888
8989For 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):
3434 return version_info
3535
3636
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
3838__version_info__ = get_version (__version__ )
3939
4040
Original file line number Diff line number Diff line change 2828author = 'Databricks Inc'
2929
3030# 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
3232
3333
3434# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 0.3.5
2+ current_version = 0.3.6
33commit = False
44tag = False
55parse = (?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 3131
3232setuptools .setup (
3333 name = "dbldatagen" ,
34- version = "0.3.5 " ,
34+ version = "0.3.6 " ,
3535 author = "Ronan Stokes, Databricks" ,
3636 description = "Databricks Labs - PySpark Synthetic Data Generator" ,
3737 long_description = long_description ,
You can’t perform that action at this time.
0 commit comments