Skip to content
This repository was archived by the owner on Aug 3, 2024. It is now read-only.

chore: Bump version -> 0.2.0 #33

Merged
merged 1 commit into from
Mar 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Update your `target` and `secretKey`, and you're ready to go.
docker run \
-v $PWD/docs/beaver_server.yaml:/app/config/beaver_server.yaml \
-v $PWD/data:/app/data/ \
-p 8080:8080 --restart unless-stopped amalshaji/beaver:0.1.0
-p 8080:8080 --restart unless-stopped amalshaji/beaver:0.2.0
```

Replace `$PWD/docs/beaver_server.yaml` with path to your config file
Expand All @@ -71,7 +71,7 @@ Update your `target` and `secretKey`, and you're ready to go.
```yaml
services:
beaver:
image: amalshaji/beaver:0.1.0
image: amalshaji/beaver:0.2.0
volumes:
- ./docs/beaver_server.yaml:/app/config/beaver_server.yaml
- ./data:/app/data/
Expand Down
2 changes: 1 addition & 1 deletion cmd/beaver_client/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/spf13/cobra"
)

const VERSION = "0.1.0"
const VERSION = "0.2.0"

var versionCmd = &cobra.Command{
Use: "version",
Expand Down
2 changes: 1 addition & 1 deletion cmd/beaver_server/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/spf13/cobra"
)

const VERSION = "0.1.0"
const VERSION = "0.2.0"

var versionCmd = &cobra.Command{
Use: "version",
Expand Down
2 changes: 1 addition & 1 deletion deployments/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
beaver:
image: amalshaji/beaver:main
image: amalshaji/beaver:0.2.0
volumes:
- ./beaver_server.yaml:/app/config/beaver_server.yaml
- ./data:/app/data/
Expand Down