Skip to content

Commit 0e4cc06

Browse files
committed
chore: releasing devkit rc 7
1 parent 2aedcdc commit 0e4cc06

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.1.0-preview.6.rc
1+
v0.1.0-preview.7.rc

config/templates.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
framework:
22
hourglass:
33
template: "https://github.com/Layr-Labs/hourglass-avs-template"
4-
version: "v0.0.27"
4+
version: "v0.0.29"
55
languages:
66
- go
77
- ts

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ replace github.com/Layr-Labs/devkit-cli => ./
88

99
require (
1010
github.com/Layr-Labs/eigenlayer-contracts v1.8.0-testnet-final
11-
github.com/Layr-Labs/hourglass-monorepo/ponos v0.0.0-20250613205316-cb10040f5737
11+
github.com/Layr-Labs/hourglass-monorepo/ponos v0.0.0-20250922231548-930e667774cc
1212
github.com/Layr-Labs/multichain-go v0.0.13
1313
github.com/google/uuid v1.6.0
1414
github.com/joho/godotenv v1.5.1
@@ -93,7 +93,7 @@ require (
9393
go.opentelemetry.io/proto/otlp v1.6.0 // indirect
9494
go.uber.org/multierr v1.11.0 // indirect
9595
golang.org/x/crypto v0.39.0 // indirect
96-
golang.org/x/sync v0.15.0 // indirect
96+
golang.org/x/sync v0.16.0 // indirect
9797
golang.org/x/sys v0.33.0 // indirect
9898
)
9999

go.sum

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ github.com/Layr-Labs/eigenlayer-contracts v1.8.0-testnet-final h1:f+dHuhY4mrgBOw
1010
github.com/Layr-Labs/eigenlayer-contracts v1.8.0-testnet-final/go.mod h1:Ie8YE3EQkTHqG6/tnUS0He7/UPMkXPo/3OFXwSy0iRo=
1111
github.com/Layr-Labs/hourglass-monorepo/ponos v0.0.0-20250613205316-cb10040f5737 h1:UnBl34Y3xxQ4WTQ/O36dtY0CtHXZXvgyWxwEdJRCdHQ=
1212
github.com/Layr-Labs/hourglass-monorepo/ponos v0.0.0-20250613205316-cb10040f5737/go.mod h1:bNDHU6OHvYrjPaUe/0GSUrfvO6OjGFWIWPehC0U6K40=
13+
github.com/Layr-Labs/hourglass-monorepo/ponos v0.0.0-20250922231548-930e667774cc h1:7hTPNHMikTvB/6ygTlWBVnDfKrCXE6kTN43TDevYwNs=
14+
github.com/Layr-Labs/hourglass-monorepo/ponos v0.0.0-20250922231548-930e667774cc/go.mod h1:36FYh84fOM0viTZeYSp4dZB6Ecjj2zK0ywDAGeBlDhk=
1315
github.com/Layr-Labs/multichain-go v0.0.13 h1:4wQ2gpd2DUy13aaKwP8lRHfgPhyBbUo95HSIWQYypPg=
1416
github.com/Layr-Labs/multichain-go v0.0.13/go.mod h1:EK4rp+68FMQ5BYdSc7s1KWCGsT8cbQyTwENFEVtUR6M=
1517
github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY=
@@ -353,6 +355,7 @@ golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJ
353355
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
354356
golang.org/x/sync v0.15.0 h1:KWH3jNZsfyT6xfAfKiz6MRNmd46ByHDYaZ7KSkCtdW8=
355357
golang.org/x/sync v0.15.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
358+
golang.org/x/sync v0.16.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
356359
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
357360
golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
358361
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=

pkg/template/config_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ func TestLoadConfig(t *testing.T) {
1717
}
1818

1919
expectedBaseURL := "https://github.com/Layr-Labs/hourglass-avs-template"
20-
expectedVersion := "v0.0.27"
20+
expectedVersion := "v0.0.29"
2121

2222
if mainBaseURL != expectedBaseURL {
2323
t.Errorf("Unexpected main template base URL: got %s, want %s", mainBaseURL, expectedBaseURL)

0 commit comments

Comments
 (0)