Skip to content

Commit c30aa0f

Browse files
committed
ORT 1.26.0 and ORT genai 0.14.0
1 parent 789ba2f commit c30aa0f

7 files changed

Lines changed: 20 additions & 13 deletions

File tree

.github/workflows/build-test-models.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Set up Go
2929
uses: actions/setup-go@v2
3030
with:
31-
go-version: '1.26.3'
31+
go-version: '1.26.4'
3232
- name: Checkout code
3333
uses: actions/checkout@v4
3434
- name: Install dependencies

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up Go
2727
uses: actions/setup-go@v2
2828
with:
29-
go-version: '1.26.3'
29+
go-version: '1.26.4'
3030
- name: Checkout code
3131
uses: actions/checkout@v4
3232
- name: Install dependencies
@@ -95,7 +95,7 @@ jobs:
9595
docker-bake.hcl
9696
targets: hugot
9797
set: |
98-
hugot.tags=${{ steps.meta.outputs.tags }}
98+
hugot.tags=${{ join(fromJson(steps.meta.outputs.json).tags, ',') }}
9999
hugot.labels=${{ steps.meta.outputs.labels }}
100100
hugot.output=type=registry
101101

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Go
1717
uses: actions/setup-go@v2
1818
with:
19-
go-version: '1.26.3'
19+
go-version: '1.26.4'
2020
- name: Checkout code
2121
uses: actions/checkout@v4
2222
- name: Install dependencies

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [0.7.5] - 2026-06-05
8+
9+
### Changed
10+
11+
- Upgraded to ORT v1.26.0
12+
- Upgraded to ORT GenAI v0.14.0
13+
714
## [0.7.4] - 2026-05-24
815

916
### Changed

docker-bake.hcl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# docker-bake.hcl
22

33
# ---- Versions ----
4-
variable "GO_VERSION" { default = "1.26.3" }
4+
variable "GO_VERSION" { default = "1.26.4" }
55
variable "GOTESTSUM_VERSION" { default = "1.13.0" }
66
variable "GOPJRT_VERSION" { default = "0.98.0" }
7-
variable "ONNXRUNTIME_VERSION" { default = "1.25.1" }
8-
variable "ONNXRUNTIME_GENAI_VERSION" { default = "0.13.1" }
7+
variable "ONNXRUNTIME_VERSION" { default = "1.26.0" }
8+
variable "ONNXRUNTIME_GENAI_VERSION" { default = "0.14.0" }
99
variable "JAX_CUDA_VERSION" { default = "0.9.1" }
1010

1111
target "base" {

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
github.com/knights-analytics/ortgenai v0.3.1
1111
github.com/stretchr/testify v1.11.1
1212
github.com/viant/afs v1.30.0
13-
github.com/yalue/onnxruntime_go v1.30.1
13+
github.com/yalue/onnxruntime_go v1.31.0
1414
golang.org/x/image v0.41.0
1515
golang.org/x/sync v0.20.0
1616
)
@@ -28,7 +28,7 @@ require (
2828
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
2929
github.com/x448/float16 v0.8.4 // indirect
3030
golang.org/x/crypto v0.52.0 // indirect
31-
golang.org/x/exp v0.0.0-20260508232706-74f9aab9d74a // indirect
31+
golang.org/x/exp v0.0.0-20260603202125-055de637280b // indirect
3232
golang.org/x/sys v0.45.0 // indirect
3333
golang.org/x/term v0.43.0 // indirect
3434
golang.org/x/text v0.37.0 // indirect

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,12 @@ github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM=
9494
github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg=
9595
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e h1:JVG44RsyaB9T2KIHavMF/ppJZNG9ZpyihvCd0w101no=
9696
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e/go.mod h1:RbqR21r5mrJuqunuUZ/Dhy/avygyECGrLceyNeo4LiM=
97-
github.com/yalue/onnxruntime_go v1.30.1 h1:NaEng5lWbsHZ/8X1dtaw1mIj7eV1ozyjbFo//g0ktl4=
98-
github.com/yalue/onnxruntime_go v1.30.1/go.mod h1:b4X26A8pekNb1ACJ58wAXgNKeUCGEAQ9dmACut9Sm/4=
97+
github.com/yalue/onnxruntime_go v1.31.0 h1:1ln4YW1SFOFfGJZXe3jNOb2JUSt+l2pEneZfV8HdtFA=
98+
github.com/yalue/onnxruntime_go v1.31.0/go.mod h1:b4X26A8pekNb1ACJ58wAXgNKeUCGEAQ9dmACut9Sm/4=
9999
golang.org/x/crypto v0.52.0 h1:RMs7fP2rXdep0CftQlK8Uf+kibLm7qkCcradZWYz988=
100100
golang.org/x/crypto v0.52.0/go.mod h1:1QgfPxDqh0T2M/elOJtp9RvuR95kVjir0e6/BvEmGbc=
101-
golang.org/x/exp v0.0.0-20260508232706-74f9aab9d74a h1:+3jdDGGB8NGb1Zktc737jlt3/A5f6UlwSzmvqUuufxw=
102-
golang.org/x/exp v0.0.0-20260508232706-74f9aab9d74a/go.mod h1:d2fgXJLVs4dYDHUk5lwMIfzRzSrWCfGZb0ZqeLa/Vcw=
101+
golang.org/x/exp v0.0.0-20260603202125-055de637280b h1:v1uXiEBHo8QA0LiGCo7UgHMzHT4Kdfpl2zmtH5vaP1Q=
102+
golang.org/x/exp v0.0.0-20260603202125-055de637280b/go.mod h1:d2fgXJLVs4dYDHUk5lwMIfzRzSrWCfGZb0ZqeLa/Vcw=
103103
golang.org/x/image v0.41.0 h1:8wS72eGJMJaBxK6okTzd4WaXumUlTVlb753MlsSvTCo=
104104
golang.org/x/image v0.41.0/go.mod h1:uIc348UZMSvS5Z65CVZ7iDPaNobNFEPeJ4kbqTOszmA=
105105
golang.org/x/sync v0.20.0 h1:e0PTpb7pjO8GAtTs2dQ6jYa5BWYlMuX047Dco/pItO4=

0 commit comments

Comments
 (0)