Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
JyotinderSingh committed Nov 22, 2024
1 parent 0f7b0b0 commit 61b8b1d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
)

const (
DiceDBVersion = "0.0.5"
DiceDBVersion = "0.1.0"
DefaultConfigName = "dicedb.conf"
DefaultConfigDir = "."

Expand All @@ -28,7 +28,7 @@ const (
defaultConfigTemplate = `# Configuration file for Dicedb
# Version
version = "0.0.5"
version = "0.1.0"
# Async Server Configuration
async_server.addr = "0.0.0.0"
Expand Down Expand Up @@ -93,7 +93,7 @@ var (
)

type Config struct {
Version string `config:"version" default:"0.0.5"`
Version string `config:"version" default:"0.1.0"`
InstanceID string `config:"instance_id"`
Auth auth `config:"auth"`
RespServer respServer `config:"async_server"`
Expand Down
2 changes: 1 addition & 1 deletion dicedb.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Configuration file for Dicedb

# Version
version = "0.0.5"
version = "0.1.0"

# Async Server Configuration
async_server.addr = "0.0.0.0"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/get-started/hello-world.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Once the DiceDB server starts, you will see output similar to this
██████╔╝██║╚██████╗███████╗██████╔╝██████╔╝
╚═════╝ ╚═╝ ╚═════╝╚══════╝╚═════╝ ╚═════╝
2024-10-24T06:25:32Z INF starting DiceDB version=0.0.5
2024-10-24T06:25:32Z INF starting DiceDB version=0.1.0
2024-10-24T06:25:32Z INF running with port=7379
2024-10-24T06:25:32Z INF running with enable-watch=true
2024-10-24T06:25:32Z INF running with mode=multi-threaded num-shards=32
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/get-started/realtime-leaderboard.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Once the DiceDB server starts, you will see output similar to this
██████╔╝██║╚██████╗███████╗██████╔╝██████╔╝
╚═════╝ ╚═╝ ╚═════╝╚══════╝╚═════╝ ╚═════╝
2024-10-24T18:35:55Z INF starting DiceDB version=0.0.5
2024-10-24T18:35:55Z INF starting DiceDB version=0.1.0
2024-10-24T18:35:55Z INF running with port=7379
2024-10-24T18:35:55Z INF running with enable-watch=true
2024-10-24T18:35:55Z INF running with mode=multi-threaded num-shards=12
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/config/parser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

// TestConfig is a test struct that mimics your actual config structure
type TestConfig struct {
Version string `config:"version" default:"0.0.5"`
Version string `config:"version" default:"0.1.0"`
InstanceID string `config:"instance_id"`
Auth auth `config:"auth"`
AsyncServer asyncServer `config:"async_server"`
Expand Down

0 comments on commit 61b8b1d

Please sign in to comment.