From 3ab42b91925539d8db955a1f1dbeb74223c4e4ad Mon Sep 17 00:00:00 2001 From: huocun <131865681+huocun-ant@users.noreply.github.com> Date: Wed, 26 Jun 2024 14:34:36 +0800 Subject: [PATCH] update version to 0.5.x (#71) * update version * add numpy version spec * fix docker file warning --- CHANGELOG.md | 5 +++++ docker/Dockerfile | 2 +- requirements.txt | 1 + secretflow_serving_lib/version.py | 2 +- version.txt | 2 +- 5 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0d5c07..a33e7d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,12 @@ > please add your unreleased change here. +## 20240625 - 0.4.0b0 + - [Feature] `MERGE_Y` operator support `EXP_TAYLOR` link function +- [Feature] add graph_builder function to secretflow_serving_lib +- [Feature] handle 30x http code for model pulling +- [Feature] support `cast` function of arrow in preprocessing operator ## 20240524 - 0.3.1b0 diff --git a/docker/Dockerfile b/docker/Dockerfile index 9bd89d3..c4eefc0 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM secretflow/base-ci:latest as builder +FROM secretflow/base-ci:latest AS builder RUN yum install -y \ wget autoconf bison flex git protobuf-devel libnl3-devel \ diff --git a/requirements.txt b/requirements.txt index 78852d2..23c78ec 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ grpcio>=1.42.0,!=1.48.0 protobuf>=4,<5 pyarrow==14.0.2 +numpy<2 diff --git a/secretflow_serving_lib/version.py b/secretflow_serving_lib/version.py index 28be728..835b2ef 100644 --- a/secretflow_serving_lib/version.py +++ b/secretflow_serving_lib/version.py @@ -13,4 +13,4 @@ # limitations under the License. -__version__ = "0.4.0.dev$$DATE$$" +__version__ = "0.5.0.dev$$DATE$$" diff --git a/version.txt b/version.txt index 28be728..835b2ef 100644 --- a/version.txt +++ b/version.txt @@ -13,4 +13,4 @@ # limitations under the License. -__version__ = "0.4.0.dev$$DATE$$" +__version__ = "0.5.0.dev$$DATE$$"