Skip to content

Commit

Permalink
feat: bump v1.0.28
Browse files Browse the repository at this point in the history
  • Loading branch information
rueian committed Feb 4, 2024
1 parent 0bee396 commit 8a58668
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 20 deletions.
15 changes: 0 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -452,21 +452,6 @@ client.Do(ctx, client.B().FtSearch().Index("idx").Query("@f:v").Build()).AsFtSea
client.Do(ctx, client.B().Geosearch().Key("k").Fromlonlat(1, 1).Bybox(1).Height(1).Km().Build()).AsGeosearch()
```

## Supporting Go mod 1.18

To support the old Go 1.18 at least until Go 1.21 comes, there will be a special build tagged with `-go1.18` for each release.

Such releases remove `RedisResult.AsBytes()` and other related functionalities provided by later go versions.

```
# go.mod
module mymodule
go 1.18
require github.com/redis/rueidis v1.0.27-go1.18
```

## Contributing

Contributions are welcome, including [issues](https://github.com/redis/rueidis/issues), [pull requests](https://github.com/redis/rueidis/pulls), and [discussions](https://github.com/redis/rueidis/discussions).
Expand Down
2 changes: 1 addition & 1 deletion om/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ replace github.com/redis/rueidis => ../

require (
github.com/oklog/ulid/v2 v2.1.0
github.com/redis/rueidis v1.0.27
github.com/redis/rueidis v1.0.28
)

require golang.org/x/sys v0.14.0 // indirect
2 changes: 1 addition & 1 deletion pipe.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
)

const LibName = "rueidis"
const LibVer = "1.0.27"
const LibVer = "1.0.28"

var noHello = regexp.MustCompile("unknown command .?(HELLO|hello).?")

Expand Down
2 changes: 1 addition & 1 deletion rueidisaside/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ replace github.com/redis/rueidis => ../

require (
github.com/oklog/ulid/v2 v2.1.0
github.com/redis/rueidis v1.0.27
github.com/redis/rueidis v1.0.28
)

require golang.org/x/sys v0.14.0 // indirect
4 changes: 2 additions & 2 deletions rueidisotel/go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module rueidisotel
module github.com/redis/rueidis/rueidisotel

go 1.20

replace github.com/redis/rueidis => ../

require (
github.com/redis/rueidis v1.0.27
github.com/redis/rueidis v1.0.28
go.opentelemetry.io/otel v1.21.0
go.opentelemetry.io/otel/metric v1.21.0
go.opentelemetry.io/otel/sdk v1.21.0
Expand Down

0 comments on commit 8a58668

Please sign in to comment.