Skip to content

Commit 23297a6

Browse files
committed
Update Olric version to v0.7.0
Bump the version from v0.6.1 to v0.7.0 across the codebase and documentation. This includes updating references in the README, examples, installation commands, and release version constants.
1 parent 981b952 commit 23297a6

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ See [Docker](#docker) and [Samples](#samples) sections to get started!
2323

2424
Join our [Discord server!](https://discord.gg/ahK7Vjr8We)
2525

26-
The current production version is [v0.6.1](https://github.com/olric-data/olric/tree/release/v0.6)
26+
The current production version is [v0.7.0](https://github.com/olric-data/olric/tree/release/v0.7)
2727

2828
### About renaming the module
2929

@@ -176,7 +176,7 @@ Software doesn't maintain itself. If you need support on complex topics or reque
176176
With a correctly configured Golang environment:
177177

178178
```
179-
go install github.com/olric-data/olric/cmd/olric-server@v0.6.1
179+
go install github.com/olric-data/olric/cmd/olric-server@v0.7.0
180180
```
181181

182182
Now you can start using Olric:
@@ -214,7 +214,7 @@ OK
214214
With olric-server, you can create an Olric cluster with a few commands. This is how to install olric-server:
215215

216216
```bash
217-
go install github.com/olric-data/olric/cmd/olric-server@v0.6.1
217+
go install github.com/olric-data/olric/cmd/olric-server@v0.7.0
218218
```
219219

220220
Let's create a cluster with the following:
@@ -283,7 +283,7 @@ this repository. `EmbeddedClient` provides a client implementation for [embedded
283283
Obviously, you can use `ClusterClient` for your embedded-member deployments. But it's good to use `EmbeddedClient` provides
284284
a better performance due to localization of the queries.
285285

286-
See the client documentation on [pkg.go.dev](https://pkg.go.dev/github.com/olric-data/olric/@v0.6.1)
286+
See the client documentation on [pkg.go.dev](https://pkg.go.dev/github.com/olric-data/olric/@v0.7.0)
287287

288288
## Cluster Events
289289

@@ -1336,7 +1336,7 @@ import (
13361336
)
13371337

13381338
func main() {
1339-
// Sample for Olric v0.6.x
1339+
// Sample for Olric v0.7.x
13401340

13411341
// Deployment scenario: embedded-member
13421342
// This creates a single-node Olric cluster. It's good enough for experimenting.
@@ -1429,7 +1429,7 @@ import (
14291429
)
14301430

14311431
func main() {
1432-
// Sample for Olric v0.6.x
1432+
// Sample for Olric v0.7.x
14331433

14341434
// Deployment scenario: embedded-member
14351435
// This creates a single-node Olric cluster. It's good enough for experimenting.
@@ -1520,7 +1520,7 @@ import (
15201520
)
15211521

15221522
func main() {
1523-
// Sample for Olric v0.6.x
1523+
// Sample for Olric v0.7.x
15241524

15251525
// Deployment scenario: client-server
15261526

@@ -1590,7 +1590,7 @@ import (
15901590
)
15911591

15921592
func main() {
1593-
// Sample for Olric v0.6.x
1593+
// Sample for Olric v0.7.x
15941594

15951595
// Deployment scenario: embedded-member
15961596
// This creates a single-node Olric cluster. It's good enough for experimenting.
@@ -1699,7 +1699,7 @@ import (
16991699
)
17001700

17011701
func main() {
1702-
// Sample for Olric v0.6.x
1702+
// Sample for Olric v0.7.x
17031703

17041704
// Deployment scenario: client-server
17051705

olric.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ import (
5757
)
5858

5959
// ReleaseVersion is the current stable version of Olric
60-
const ReleaseVersion string = "0.6.1"
60+
const ReleaseVersion string = "0.7.0"
6161

6262
var (
6363
// ErrOperationTimeout is returned when an operation times out.

0 commit comments

Comments
 (0)