Skip to content

Commit ec576f5

Browse files
release 0.2.1
1 parent 6232f10 commit ec576f5

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

CHANGELOG.md

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

55
See the contents of the file `python/require.txt` to see the Python package dependencies
66

7-
### Version 0.2.0-rc1
7+
### Version 0.2.1
88

99
#### Features
1010
* Uses pipenv for main build process

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
[![build](https://github.com/databrickslabs/dbldatagen/workflows/build/badge.svg?branch=master)](https://github.com/databrickslabs/dbldatagen/actions?query=workflow%3Abuild+branch%3Amaster)
99
[![codecov](https://codecov.io/gh/databrickslabs/dbldatagen/branch/master/graph/badge.svg)](https://codecov.io/gh/databrickslabs/dbldatagen)
10-
![lines](https://img.shields.io/tokei/lines/github/databrickslabs/dbldatagen)
1110
[![downloads](https://img.shields.io/github/downloads/databrickslabs/dbldatagen/total.svg)](https://hanadigital.github.io/grev/?user=databrickslabs&repo=dbldatagen)
1211
[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/databrickslabs/dbldatagen.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/databrickslabs/dbldatagen/context:python)
1312

@@ -42,6 +41,7 @@ used in other computations
4241
* Generating values to conform to a schema or independent of an existing schema
4342
* use of SQL expressions in test data generation
4443
* plugin mechanism to allow use of 3rd party libraries such as Faker
44+
* Use of data generator to generate sources in Databricks Delta Live Tables
4545

4646
Details of these features can be found in the [Developer Docs](docs/source/APIDOCS.md) and the online help
4747
(which contains the full documentation including the HTML version of the Developer Docs) -
@@ -69,24 +69,24 @@ release notes for library compatibility
6969
The release binaries can be accessed at:
7070
- Databricks Labs Github Data Generator releases - https://github.com/databrickslabs/dbldatagen/releases
7171

72-
To use download a wheel file and install using the Databricks install mechanism to install a wheel based
73-
library into your workspace.
74-
75-
Alternatively, you can install the library as a notebook scoped library when working within the Databricks
76-
notebook environment through the use of a `%pip` cell in your notebook.
72+
You can install the library as a notebook scoped library when working within the Databricks
73+
notebook environment through the use of a `%pip install` cell in your notebook.
7774

7875
To install as a notebook-scoped library, create and execute a notebook cell with the following text:
7976

8077
> `%pip install git+https://github.com/databrickslabs/dbldatagen`
8178
82-
The `%pip install` method will work in the Databricks Community Environment also.
79+
The `%pip install` method will work in Delta Live Tables pipelines and in the Databricks Community
80+
Environment also.
8381

84-
The latest pre-release is code complete and fully functional.
82+
Alternatively, you can download a wheel file and install using the Databricks install mechanism to install a wheel based
83+
library into your workspace.
8584

86-
## Using the Project
87-
To use the project, the generated wheel should be installed in your Python notebook as a wheel based library
85+
## Using the Data Generator
86+
To use the data generator, install the library using the `%pip install` method or install the Python wheel directly
87+
in your environment.
8888

89-
Once the library has been installed, you can use it to generate a test data frame.
89+
Once the library has been installed, you can use it to generate a data frame composed of synthetic data.
9090

9191
For example
9292

dbldatagen/_version.py

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

3535

36-
__version__ = "0.2.0-rc1" # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
36+
__version__ = "0.2.1" # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
3737
__version_info__ = get_version(__version__)

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.2.0-rc1" # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
31+
release = "0.2.1" # 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.2.0-rc1
2+
current_version = 0.2.1
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
@@ -13,7 +13,7 @@
1313

1414
setuptools.setup(
1515
name="dbldatagen",
16-
version="0.2.0-rc1",
16+
version="0.2.1",
1717
author="Ronan Stokes, Databricks",
1818
author_email="[email protected]",
1919
description="Databricks Labs - PySpark Synthetic Data Generator",

0 commit comments

Comments
 (0)