Skip to content

Commit fd8c853

Browse files
authored
bump version (#134)
* bump heu version * bump dp version * bump serving version
1 parent 7089e18 commit fd8c853

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

Diff for: CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@
1111

1212
> please add your unreleased change here.
1313
14+
## 20241219 - 0.8.0b0
15+
1416
- [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.
17+
- [Feature] In the Kuscia scenario, the startup parameters can specify the predictor.
1518

1619
## 20241023 - 0.7.0b0
1720

Diff for: bazel/repositories.bzl

+9-6
Original file line numberDiff line numberDiff line change
@@ -42,21 +42,24 @@ def sf_serving_deps():
4242

4343
def _dataproxy():
4444
maybe(
45-
git_repository,
45+
http_archive,
4646
name = "dataproxy",
47-
commit = "e38d723ab274d4568bf93cf74c0cb516435118c5",
48-
remote = "https://github.com/secretflow/dataproxy.git",
47+
urls = [
48+
"https://github.com/secretflow/dataproxy/archive/refs/tags/v0.3.0b0.tar.gz",
49+
],
50+
strip_prefix = "dataproxy-0.3.0b0",
51+
sha256 = "016915d16bd9331e2b7766d2a4090166c7c9f5e58b3ba75f68df3e23cde9846a",
4952
)
5053

5154
def _heu():
5255
maybe(
5356
http_archive,
5457
name = "com_alipay_sf_heu",
5558
urls = [
56-
"https://github.com/secretflow/heu/archive/refs/tags/0.6.0.dev20241106.tar.gz",
59+
"https://github.com/secretflow/heu/archive/refs/tags/v0.5.2b0.tar.gz",
5760
],
58-
strip_prefix = "heu-0.6.0.dev20241106",
59-
sha256 = "498a73bace6c85bf8c2f2663101d71584bec62eb213acdebc04dbbe11a4460cc",
61+
strip_prefix = "heu-0.5.2b0",
62+
sha256 = "152309975a6bb655ef6f33cd14cd85fc81a8bb1aabc168f3b8ea545a56e2a088",
6063
)
6164

6265
def _bazel_rules_pkg():

Diff for: python_lib/secretflow_serving_lib/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# limitations under the License.
1414

1515

16-
__version__ = "0.8.0.dev$$DATE$$"
16+
__version__ = "0.8.0b0"

Diff for: version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# limitations under the License.
1414

1515

16-
__version__ = "0.8.0.dev$$DATE$$"
16+
__version__ = "0.8.0b0"

0 commit comments

Comments
 (0)