Skip to content

Commit

Permalink
Merge pull request #8 from alteryx/first_release
Browse files Browse the repository at this point in the history
release_v0.1.0
  • Loading branch information
NabilFayak authored Jul 28, 2023
2 parents eb88e53 + d285ffe commit 7b30cb1
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 10 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.venv/
**/__pycache__/
.DS_Store
Checkers.egg-info/
Checkers.egg-info/
.python-version
pdm.lock
41 changes: 33 additions & 8 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,38 @@
Release Notes
-------------
**Future Releases**
* Enhancements
* Fixes
* Cleanup files and add release workflow :pr:`6`
* Changes
* Documentation Changes
* Testing Changes
.. **Future Releases**
.. * Enhancements
.. * Fixes
.. * Changes
.. * Documentation Changes
.. * Testing Changes
**v0.1.0 July 28, 2023**
* Enhancements
* updated pyproject to v0.1.0 for first release and added project urls :pr:`8`
* added pdm.lock and .python-version to .gitignore :pr:`8`
* Added repo specific token for workflows :pr:`2`
* PDM Packaging ready for deployment :pr:`2`
* Added testing workflow for pytest :pr:`2`
* Transfer over base `Data Checks` and `IDColumnData Checks` from the `EvalML` repo :pr:`1`
* Added in github workflows that are relevant to `DataChecks`, from `EvalML` repository, and modified to fit `DataChecks` wherever possible :pr:`1`
* Implemented linters and have them successfully running :pr:`1`
* Fixes
* Cleanup files and add release workflow :pr:`6`
* Fixed pytest failures :pr:`1`
* Workflows are now up and running properly :pr:`1`
* Changes
* Irrelevant workflows removed (`minimum_dependency_checker`) :pr:`2`
* Removed all `EvalML` dependencies and unnecessary functions/comments from `utils`, `tests`, `exceptions`, and `datachecks` :pr:`1`
* Updated comments to reflect `DataChecks` repository :pr:`1`
* Restructured file directory to categorize data checks between `datacheck_meta` and `checks` :pr:`1`
* Restructured pdm packaging to only be relevant to `DataChecks`, now to be renamed to `CheckMate` :pr:`1`
* Documentation Changes
* Documentation refactored to now fit `CheckMate` :pr:`2`
* Documentation refactored to now fit `Checkers` :pr:`4`
* Testing Changes
* Automated testing within github actions :pr:`2`
* Removed integration testing due to irrelevance with `datacheck_meta` and `checks` :pr:`1`

**v0.0.2 July 26, 2023**
* Enhancements
Expand Down Expand Up @@ -41,4 +66,4 @@ Release Notes

**v0.0.0 July 3, 2023**

* *First Release*
* *GitHub Repo Created*
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[project]
name = "Checkers"
version = "0.0.2"
version = "0.1.0"
description = "Checkers is an AutoML library which catches and warns of problems with your data and problem setup before modeling."
authors = [
{name = "Nabil Fayak", email = "nabil.fayak@alteryx.com"},
Expand All @@ -17,6 +17,10 @@ requires-python = ">=3.8,<4.0"
readme = "README.md"
license = {text = "BSD-3-Clause"}

[project.urls]
"Source Code"= "https://github.com/alteryx/Checkers/"
"Issue Tracker" = "https://github.com/alteryx/Checkers/issues"

[project.optional-dependencies]
docs = [
"docutils<0.17,>=0.15.2",
Expand Down

0 comments on commit 7b30cb1

Please sign in to comment.