From 4c21549d0809bce07e8e4d4552361efc31045e00 Mon Sep 17 00:00:00 2001 From: Jason Petersen Date: Fri, 17 May 2024 09:39:32 -0600 Subject: [PATCH] Bump for release --- META.json | 4 ++-- Makefile | 4 ++-- Trunk.toml | 2 +- doc/guide.md | 2 +- timeseries.control | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/META.json b/META.json index d37fe20..8c62f3b 100644 --- a/META.json +++ b/META.json @@ -2,7 +2,7 @@ "name": "timeseries", "abstract": "Convenience API for Tembo time series stack", "description": "Convenience API for Tembo time series stack", - "version": "0.1.4", + "version": "0.1.5", "maintainer": [ "Jason Petersen " ], @@ -12,7 +12,7 @@ "abstract": "Convenience API for Tembo time series stack", "file": "sql/timeseries.sql", "docfile": "doc/timeseries.md", - "version": "0.1.4" + "version": "0.1.5" } }, "prereqs": { diff --git a/Makefile b/Makefile index c78ccb9..cea9090 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ EXTVERSION = $(shell grep -m 1 '[[:space:]]\{6\}"version":' META.json | \ DISTVERSION = $(shell grep -m 1 '[[:space:]]\{3\}"version":' META.json | \ sed -e 's/[[:space:]]*"version":[[:space:]]*"\([^"]*\)",\{0,1\}/\1/') -EXTVERSIONS = 0.1.4 +EXTVERSIONS = 0.1.5 DATA = $(wildcard sql/*--*.sql) DATA_built = $(foreach v,$(EXTVERSIONS),sql/$(EXTENSION)--$(v).sql) @@ -30,5 +30,5 @@ latest-changes.md: Changes # generate each version's file installation file by concatenating # previous upgrade scripts -sql/$(EXTENSION)--0.1.4.sql: sql/$(EXTENSION).sql +sql/$(EXTENSION)--0.1.5.sql: sql/$(EXTENSION).sql cat $^ > $@ diff --git a/Trunk.toml b/Trunk.toml index dc8cb77..1bb0bb1 100644 --- a/Trunk.toml +++ b/Trunk.toml @@ -6,7 +6,7 @@ description = "Open source timeseries extension for Postgres." homepage = "https://github.com/tembo-io/pg_timeseries" documentation = "https://github.com/tembo-io/pg_timeseries" categories = ["analytics"] -version = "0.1.4" +version = "0.1.5" [build] postgres_version = "15" diff --git a/doc/guide.md b/doc/guide.md index 24ec5c7..609a1a3 100644 --- a/doc/guide.md +++ b/doc/guide.md @@ -4,7 +4,7 @@ In this guide, you will become familiar with the functions and features of the t ## Preparing your database -You'll need a PostgreSQL instance running timeseries `0.1.4` or later. An easy way to have one set up for you is to deploy one from Tembo Cloud [here](https://cloud.tembo.io). The free tier will perform well enough for the data set we'll be using. +You'll need a PostgreSQL instance running timeseries `0.1.5` or later. An easy way to have one set up for you is to deploy one from Tembo Cloud [here](https://cloud.tembo.io). The free tier will perform well enough for the data set we'll be using. Once that's up and running, you'll need a client machine with `psql` (to connect to your database) and [the Divvy dataset](https://tembo-demo-bucket.s3.amazonaws.com/202004--202402-divvy-tripdata-slim.csv.gz), which will total about 50MiB of CSV after decompression. diff --git a/timeseries.control b/timeseries.control index c007816..1aa7027 100644 --- a/timeseries.control +++ b/timeseries.control @@ -1,5 +1,5 @@ # time series extension comment = 'Convenience API for Tembo time series stack' -default_version = '0.1.4' +default_version = '0.1.5' module_pathname = '$libdir/timeseries' requires = 'columnar, pg_cron, pg_partman'