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

Commit

Permalink
chore: Bump version -> 0.2.0 (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
amalshaji authored Mar 4, 2023
1 parent 15eca3a commit f96d5ed
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
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

0 comments on commit f96d5ed

Please sign in to comment.