Skip to content

Commit ef3c723

Browse files
authored
Release 0.1.5 (#91)
## Changes * Updated release process * Updated README ### Tests - [x] manually tested - [ ] added unit tests - [ ] added integration tests
1 parent abc2b8a commit ef3c723

File tree

6 files changed

+21
-5
lines changed

6 files changed

+21
-5
lines changed

.github/codecov.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
coverage:
2+
status:
3+
project:
4+
default:
5+
target: auto
6+
threshold: 0.5% # The minimum coverage threshold for the project
7+
patch:
8+
default:
9+
target: auto
10+
threshold: 0.5% # The minimum coverage threshold for the patch

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Version changelog
22

3+
## 0.1.5
4+
5+
* Updated release process
6+
* Updated README
7+
38
## 0.1.4
49

510
* Updated release process

CONTRIBUTING.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ databricks labs uninstall dqx
153153

154154
Here are the example steps to submit your first contribution:
155155

156-
1. Make a Fork from dqx repo (if you really want to contribute)
156+
1. Make a branch in the dqx repo
157157
2. `git clone`
158158
3. `git checkout main` (or `gcm` if you're using [ohmyzsh](https://ohmyz.sh/)).
159159
4. `git pull` (or `gl` if you're using [ohmyzsh](https://ohmyz.sh/)).
@@ -162,15 +162,14 @@ Here are the example steps to submit your first contribution:
162162
7. `make fmt`
163163
8. `make lint`
164164
9. .. fix if any
165-
10. `make test`
165+
10. `make test` and `make integration`, optionally `make coverage` to get test coverage report
166166
11. .. fix if any
167167
12. `git commit -a`. Make sure to enter meaningful commit message title.
168168
13. `git push origin FEATURENAME`
169169
14. Go to GitHub UI and create PR. Alternatively, `gh pr create` (if you have [GitHub CLI](https://cli.github.com/) installed).
170170
Use a meaningful pull request title because it'll appear in the release notes. Use `Resolves #NUMBER` in pull
171171
request description to [automatically link it](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests#linking-a-pull-request-to-an-issue)
172-
to an existing issue.
173-
15. announce PR for the review
172+
to an existing issue.
174173

175174
## Troubleshooting
176175

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Databricks Labs DQX
22
===
33

4+
<img src="docs/logo.png" alt="DQX" width="50%">
5+
46
Simplified Data Quality checking at Scale for PySpark Workloads on streaming and standard DataFrames.
57

68
[![build](https://github.com/databrickslabs/dqx/actions/workflows/push.yml/badge.svg)](https://github.com/databrickslabs/dqx/actions/workflows/push.yml) [![codecov](https://codecov.io/github/databrickslabs/dqx/graph/badge.svg)](https://codecov.io/github/databrickslabs/dqx) ![linesofcode](https://aschey.tech/tokei/github/databrickslabs/dqx?category=code)

docs/logo.png

17.5 KB
Loading

src/databricks/labs/dqx/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.4"
1+
__version__ = "0.1.5"

0 commit comments

Comments
 (0)