diff --git a/Cargo.lock b/Cargo.lock index 9036273..c2e5756 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1408,7 +1408,7 @@ dependencies = [ [[package]] name = "prometheus_fdw" -version = "0.1.5" +version = "0.2.0" dependencies = [ "chrono", "pgrx", diff --git a/Cargo.toml b/Cargo.toml index 60dd08b..175b2fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prometheus_fdw" -version = "0.1.5" +version = "0.2.0" edition = "2021" [lib] diff --git a/Trunk.toml b/Trunk.toml index 9c3af8c..d56c689 100644 --- a/Trunk.toml +++ b/Trunk.toml @@ -6,7 +6,7 @@ description = "Postgres Foreign Data Wrapper for Prometheus Data" homepage = "https://github.com/tembo-io/prometheus_fdw" documentation = "https://github.com/tembo-io/prometheus_fdw" categories = ["connectors"] -version = "0.1.5" +version = "0.2.0" [build] postgres_version = "15" diff --git a/src/lib.rs b/src/lib.rs index 6f9c7e4..9ff9c59 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -65,7 +65,7 @@ fn resp_to_rows(obj: &str, resp: &JsonValue, quals: &[Qual]) -> Vec { } #[wrappers_fdw( - version = "0.1.5", + version = "0.2.0", author = "Jay Kothari", website = "https://tembo.io", error_type = "PrometheusFdwError"