Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update release number following release cutoff for http connector #733

Merged
merged 7 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion data-connector-lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
REPOROOT=..
include $(REPOROOT)/.make.defaults

DPK_CONNECTOR_VERSION=0.2.2
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should be moved to .make.versions and incremented to 0.2.3.dev0 before re-running set-versions


clean::
@# Help: Clean up the distribution build and the venv
rm -rf dist venv
Expand All @@ -13,7 +15,7 @@ clean::
setup::

set-versions: .check-env
$(MAKE) TOML_VERSION=$(DPK_LIB_VERSION) .defaults.update-toml
$(MAKE) TOML_VERSION=$(DPK_CONNECTOR_VERSION) .defaults.update-toml

build:: build-dist

Expand Down
2 changes: 1 addition & 1 deletion data-connector-lib/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "data_prep_connector"
version = "0.2.2.dev1"
version = "0.2.2"
requires-python = ">=3.10"
keywords = [
"data",
Expand Down
16 changes: 16 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Data Prep Kit Release notes

## Release 0.2.2- HTTP Connector Module - 10/23/2024

### General
1. Bug fixes across the repo
1. Minor enhancements and experimentation with single packaging techniques using \[extra\]
1. Decoupled the release process for each of the component so we can be more responsive to the needs of our stakeholders
1. The minor digit for the release for al components is incremented and the patch digit is reset to 0 for all new releases of the data-prep-toolkit
1. The patch digit for the release of any one component can be increased independently from other component patch number


### data-prep-toolkit-Connector

1. Released first version of the data-prep-toolkit-connector for crawling web sites and downloading HTML and PDF files for ingestion by the pipeline



## Release 0.2.1 - 9/24/2024

### General
Expand Down