Skip to content

Commit

Permalink
Release 0.1.5 (#91)
Browse files Browse the repository at this point in the history
## Changes
* Updated release process
* Updated README

### Tests

- [x] manually tested
- [ ] added unit tests
- [ ] added integration tests
  • Loading branch information
mwojtyczka authored Jan 15, 2025
1 parent abc2b8a commit ef3c723
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 5 deletions.
10 changes: 10 additions & 0 deletions .github/codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
coverage:
status:
project:
default:
target: auto
threshold: 0.5% # The minimum coverage threshold for the project
patch:
default:
target: auto
threshold: 0.5% # The minimum coverage threshold for the patch
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Version changelog

## 0.1.5

* Updated release process
* Updated README

## 0.1.4

* Updated release process
Expand Down
7 changes: 3 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ databricks labs uninstall dqx

Here are the example steps to submit your first contribution:

1. Make a Fork from dqx repo (if you really want to contribute)
1. Make a branch in the dqx repo
2. `git clone`
3. `git checkout main` (or `gcm` if you're using [ohmyzsh](https://ohmyz.sh/)).
4. `git pull` (or `gl` if you're using [ohmyzsh](https://ohmyz.sh/)).
Expand All @@ -162,15 +162,14 @@ Here are the example steps to submit your first contribution:
7. `make fmt`
8. `make lint`
9. .. fix if any
10. `make test`
10. `make test` and `make integration`, optionally `make coverage` to get test coverage report
11. .. fix if any
12. `git commit -a`. Make sure to enter meaningful commit message title.
13. `git push origin FEATURENAME`
14. Go to GitHub UI and create PR. Alternatively, `gh pr create` (if you have [GitHub CLI](https://cli.github.com/) installed).
Use a meaningful pull request title because it'll appear in the release notes. Use `Resolves #NUMBER` in pull
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)
to an existing issue.
15. announce PR for the review
to an existing issue.

## Troubleshooting

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Databricks Labs DQX
===

<img src="docs/logo.png" alt="DQX" width="50%">

Simplified Data Quality checking at Scale for PySpark Workloads on streaming and standard DataFrames.

[![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)
Expand Down
Binary file added docs/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/databricks/labs/dqx/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.4"
__version__ = "0.1.5"

0 comments on commit ef3c723

Please sign in to comment.