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

bump version #134

Merged
merged 3 commits into from
Dec 20, 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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@

> please add your unreleased change here.

## 20241219 - 0.8.0b0

- [Infra] Bump heu version to 0.6.0. Note that he model packages generated by secretflow < 1.11 (heu <= 5.1.0b0) are no longer supported.
- [Feature] In the Kuscia scenario, the startup parameters can specify the predictor.

## 20241023 - 0.7.0b0

Expand Down
15 changes: 9 additions & 6 deletions bazel/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -42,21 +42,24 @@ def sf_serving_deps():

def _dataproxy():
maybe(
git_repository,
http_archive,
name = "dataproxy",
commit = "e38d723ab274d4568bf93cf74c0cb516435118c5",
remote = "https://github.com/secretflow/dataproxy.git",
urls = [
"https://github.com/secretflow/dataproxy/archive/refs/tags/v0.3.0b0.tar.gz",
],
strip_prefix = "dataproxy-0.3.0b0",
sha256 = "016915d16bd9331e2b7766d2a4090166c7c9f5e58b3ba75f68df3e23cde9846a",
)

def _heu():
maybe(
http_archive,
name = "com_alipay_sf_heu",
urls = [
"https://github.com/secretflow/heu/archive/refs/tags/0.6.0.dev20241106.tar.gz",
"https://github.com/secretflow/heu/archive/refs/tags/v0.5.2b0.tar.gz",
],
strip_prefix = "heu-0.6.0.dev20241106",
sha256 = "498a73bace6c85bf8c2f2663101d71584bec62eb213acdebc04dbbe11a4460cc",
strip_prefix = "heu-0.5.2b0",
sha256 = "152309975a6bb655ef6f33cd14cd85fc81a8bb1aabc168f3b8ea545a56e2a088",
)

def _bazel_rules_pkg():
Expand Down
2 changes: 1 addition & 1 deletion python_lib/secretflow_serving_lib/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# limitations under the License.


__version__ = "0.8.0.dev$$DATE$$"
__version__ = "0.8.0b0"
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# limitations under the License.


__version__ = "0.8.0.dev$$DATE$$"
__version__ = "0.8.0b0"
Loading