From c110ef7c74e49e9ca1fc8ab09a6d0375b4717eb7 Mon Sep 17 00:00:00 2001 From: Tristan Morgan Date: Wed, 21 Sep 2022 09:28:44 +1000 Subject: [PATCH] Version bump to run build and set boltdb by default. --- .circleci/config.yml | 5 ++--- cmd/root.go | 2 +- conf.toml | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 07d3e154..70a8b0e5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,9 +4,8 @@ version: 2 jobs: build: - working_directory: /go/src/github.com/servian/TechChallengeApp docker: - - image: circleci/golang:latest + - image: cimg/go:1.19 steps: - checkout @@ -19,7 +18,7 @@ jobs: deploy: working_directory: /go/src/github.com/servian/TechChallengeApp docker: - - image: circleci/golang:latest + - image: cimg/go:1.19 steps: - checkout diff --git a/cmd/root.go b/cmd/root.go index 564206cb..dd76d479 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -50,7 +50,7 @@ var rootCmd = &cobra.Command{ This application is used as part of challenging potential candiates at Sevian. Please visit http://Servian.com for more details`, - Version: "0.10.0", + Version: "0.11.0", } // Execute adds all child commands to the root command and sets flags appropriately. diff --git a/conf.toml b/conf.toml index 1d2c6483..76567d68 100644 --- a/conf.toml +++ b/conf.toml @@ -3,6 +3,6 @@ "DbName" = "app" "DbPort" = "5432" "DbHost" = "localhost" -"DbType" = "postgres" +"DbType" = "boltdb" "ListenHost" = "localhost" "ListenPort" = "3000"