Skip to content

Commit 7b30cb1

Browse files
authored
Merge pull request #8 from alteryx/first_release
release_v0.1.0
2 parents eb88e53 + d285ffe commit 7b30cb1

File tree

3 files changed

+41
-10
lines changed

3 files changed

+41
-10
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
.venv/
22
**/__pycache__/
33
.DS_Store
4-
Checkers.egg-info/
4+
Checkers.egg-info/
5+
.python-version
6+
pdm.lock

docs/source/release_notes.rst

Lines changed: 33 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,38 @@
11
Release Notes
22
-------------
3-
**Future Releases**
4-
* Enhancements
5-
* Fixes
6-
* Cleanup files and add release workflow :pr:`6`
7-
* Changes
8-
* Documentation Changes
9-
* Testing Changes
3+
.. **Future Releases**
4+
.. * Enhancements
5+
.. * Fixes
6+
.. * Changes
7+
.. * Documentation Changes
8+
.. * Testing Changes
109
10+
**v0.1.0 July 28, 2023**
11+
* Enhancements
12+
* updated pyproject to v0.1.0 for first release and added project urls :pr:`8`
13+
* added pdm.lock and .python-version to .gitignore :pr:`8`
14+
* Added repo specific token for workflows :pr:`2`
15+
* PDM Packaging ready for deployment :pr:`2`
16+
* Added testing workflow for pytest :pr:`2`
17+
* Transfer over base `Data Checks` and `IDColumnData Checks` from the `EvalML` repo :pr:`1`
18+
* Added in github workflows that are relevant to `DataChecks`, from `EvalML` repository, and modified to fit `DataChecks` wherever possible :pr:`1`
19+
* Implemented linters and have them successfully running :pr:`1`
20+
* Fixes
21+
* Cleanup files and add release workflow :pr:`6`
22+
* Fixed pytest failures :pr:`1`
23+
* Workflows are now up and running properly :pr:`1`
24+
* Changes
25+
* Irrelevant workflows removed (`minimum_dependency_checker`) :pr:`2`
26+
* Removed all `EvalML` dependencies and unnecessary functions/comments from `utils`, `tests`, `exceptions`, and `datachecks` :pr:`1`
27+
* Updated comments to reflect `DataChecks` repository :pr:`1`
28+
* Restructured file directory to categorize data checks between `datacheck_meta` and `checks` :pr:`1`
29+
* Restructured pdm packaging to only be relevant to `DataChecks`, now to be renamed to `CheckMate` :pr:`1`
30+
* Documentation Changes
31+
* Documentation refactored to now fit `CheckMate` :pr:`2`
32+
* Documentation refactored to now fit `Checkers` :pr:`4`
33+
* Testing Changes
34+
* Automated testing within github actions :pr:`2`
35+
* Removed integration testing due to irrelevance with `datacheck_meta` and `checks` :pr:`1`
1136

1237
**v0.0.2 July 26, 2023**
1338
* Enhancements
@@ -41,4 +66,4 @@ Release Notes
4166

4267
**v0.0.0 July 3, 2023**
4368

44-
* *First Release*
69+
* *GitHub Repo Created*

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[project]
33
name = "Checkers"
4-
version = "0.0.2"
4+
version = "0.1.0"
55
description = "Checkers is an AutoML library which catches and warns of problems with your data and problem setup before modeling."
66
authors = [
77
{name = "Nabil Fayak", email = "[email protected]"},
@@ -17,6 +17,10 @@ requires-python = ">=3.8,<4.0"
1717
readme = "README.md"
1818
license = {text = "BSD-3-Clause"}
1919

20+
[project.urls]
21+
"Source Code"= "https://github.com/alteryx/Checkers/"
22+
"Issue Tracker" = "https://github.com/alteryx/Checkers/issues"
23+
2024
[project.optional-dependencies]
2125
docs = [
2226
"docutils<0.17,>=0.15.2",

0 commit comments

Comments
 (0)