From ef61535ec0c6e40b337d324695b90198db1980c5 Mon Sep 17 00:00:00 2001 From: Jonathan Chappelow <jon@kwil.com> Date: Tue, 1 Oct 2024 17:52:29 -0500 Subject: [PATCH] use parse/v0.3.0 --- core/client/example/go.mod | 4 +--- core/client/example/go.sum | 2 ++ go.mod | 4 +--- go.sum | 2 ++ test/go.mod | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/core/client/example/go.mod b/core/client/example/go.mod index aeb68fafe..57200a7a9 100644 --- a/core/client/example/go.mod +++ b/core/client/example/go.mod @@ -2,11 +2,9 @@ module mykwilapp go 1.22.1 -replace github.com/kwilteam/kwil-db/parse => ../../../parse - require ( github.com/kwilteam/kwil-db/core v0.3.0 - github.com/kwilteam/kwil-db/parse v0.3.0-beta.0.20240917145512-e6922733fc1a + github.com/kwilteam/kwil-db/parse v0.3.0 ) require ( diff --git a/core/client/example/go.sum b/core/client/example/go.sum index a1539ede3..c5a84f05d 100644 --- a/core/client/example/go.sum +++ b/core/client/example/go.sum @@ -77,6 +77,8 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/kwilteam/kwil-db/core v0.3.0 h1:exeFwTfv7vLvrIb5pDvk5gmHsXsQEYDRWiaYn9s2LXQ= github.com/kwilteam/kwil-db/core v0.3.0/go.mod h1:rTXHWgWannGuOaR0vK2o7/kBXu5opLWZOqlAhLSRP1Y= +github.com/kwilteam/kwil-db/parse v0.3.0 h1:j4aot6iW1A1JrDgsG1R3Od7zY2wx311DXEEAyG6eW38= +github.com/kwilteam/kwil-db/parse v0.3.0/go.mod h1:juw5CvmJrQdZkdczzessfRhxq3k7H6H2KYhMrRSFehk= github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= github.com/leanovate/gopter v0.2.9 h1:fQjYxZaynp97ozCzfOyOuAGOU4aU/z37zf/tOujFk7c= diff --git a/go.mod b/go.mod index 09e7e81bf..37462cd54 100644 --- a/go.mod +++ b/go.mod @@ -2,8 +2,6 @@ module github.com/kwilteam/kwil-db go 1.22 -replace github.com/kwilteam/kwil-db/parse => ./parse - require ( dario.cat/mergo v1.0.0 github.com/cometbft/cometbft v0.38.12 @@ -13,7 +11,7 @@ require ( github.com/jackc/pgx/v5 v5.6.0 github.com/jpillora/backoff v1.0.0 github.com/kwilteam/kwil-db/core v0.3.0 - github.com/kwilteam/kwil-db/parse v0.2.1-0.20240910054312-c46b876071f0 + github.com/kwilteam/kwil-db/parse v0.3.0 github.com/kwilteam/kwil-extensions v0.0.0-20230727040522-1cfd930226b7 github.com/manifoldco/promptui v0.9.0 github.com/mitchellh/mapstructure v1.5.0 diff --git a/go.sum b/go.sum index f26e7c90c..6129d97dc 100644 --- a/go.sum +++ b/go.sum @@ -265,6 +265,8 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/kwilteam/kwil-db/core v0.3.0 h1:exeFwTfv7vLvrIb5pDvk5gmHsXsQEYDRWiaYn9s2LXQ= github.com/kwilteam/kwil-db/core v0.3.0/go.mod h1:rTXHWgWannGuOaR0vK2o7/kBXu5opLWZOqlAhLSRP1Y= +github.com/kwilteam/kwil-db/parse v0.3.0 h1:j4aot6iW1A1JrDgsG1R3Od7zY2wx311DXEEAyG6eW38= +github.com/kwilteam/kwil-db/parse v0.3.0/go.mod h1:juw5CvmJrQdZkdczzessfRhxq3k7H6H2KYhMrRSFehk= github.com/kwilteam/kwil-extensions v0.0.0-20230727040522-1cfd930226b7 h1:YiPBu0pOeYOtOVfwKQqdWB07SUef9LvngF4bVFD+x34= github.com/kwilteam/kwil-extensions v0.0.0-20230727040522-1cfd930226b7/go.mod h1:+BrFrV+3qcdYIfptqjwatE5gT19azuRHJzw77wMPY8c= github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc= diff --git a/test/go.mod b/test/go.mod index 57b9270dd..5f183b89f 100644 --- a/test/go.mod +++ b/test/go.mod @@ -18,7 +18,7 @@ require ( github.com/ethereum/go-ethereum v1.14.8 github.com/kwilteam/kwil-db v0.7.2 github.com/kwilteam/kwil-db/core v0.3.0 - github.com/kwilteam/kwil-db/parse v0.2.1-0.20240910054312-c46b876071f0 + github.com/kwilteam/kwil-db/parse v0.3.0 github.com/stretchr/testify v1.9.0 github.com/testcontainers/testcontainers-go v0.31.0 github.com/testcontainers/testcontainers-go/modules/compose v0.29.2-0.20240321072901-c83b93cb1eff