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 all 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
2 changes: 2 additions & 0 deletions .make.versions
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ DPK_LIB_KFP_SHARED=$(DPK_VERSION)
KFP_DOCKER_VERSION=$(DOCKER_IMAGE_VERSION)
KFP_DOCKER_VERSION_v2=$(DOCKER_IMAGE_VERSION)

DPK_CONNECTOR_VERSION=0.2.3.dev0

################## ################## ################## ################## ################## ##################
# Begin versions that the repo depends on.

Expand Down
2 changes: 1 addition & 1 deletion data-connector-lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,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
4 changes: 2 additions & 2 deletions data-connector-lib/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "data_prep_connector"
version = "0.2.2.dev1"
requires-python = ">=3.10"
version = "0.2.3.dev0"
requires-python = ">=3.10,<3.13"
keywords = [
"data",
"data acquisition",
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 all 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