diff --git a/.gitea/workflows/tag_release.yaml b/.gitea/workflows/tag_release.yaml index 951edd3..14ccf7e 100644 --- a/.gitea/workflows/tag_release.yaml +++ b/.gitea/workflows/tag_release.yaml @@ -25,7 +25,7 @@ jobs: run: | echo "Creating version" - VERSION="0.0.12" + VERSION="0.0.13" PROJECT_COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-10) BRANCH_REF="${{ gitea.ref }}" BRANCH_NAME=$(echo "$BRANCH_REF" | cut -d '/' -f 3) diff --git a/internal/place_files_here b/internal/place_files_here deleted file mode 100644 index e69de29..0000000 diff --git a/tx0/config/twilio_config.go b/tx0/config/twilio_config.go index d175bb7..a597546 100644 --- a/tx0/config/twilio_config.go +++ b/tx0/config/twilio_config.go @@ -7,7 +7,6 @@ import ( type TwilioConfig struct { AccountSID string `json:"auth_sid"` ServiceSID string `json:"service_sid"` - URI string `json:"uri"` AuthToken string `json:"auth_token"` Number string `json:"phone_number"` } @@ -16,7 +15,6 @@ func (config *TwilioConfig) PrintConfig() { fmt.Println("Twilio config") fmt.Println("Account SID:", config.AccountSID) fmt.Println("Service SID:", config.ServiceSID) - fmt.Println("URI:", config.URI) fmt.Println("Auth Token:", config.AuthToken) fmt.Println("Number:", config.Number) }