diff --git a/META.json b/META.json index 0ad7a1c..d37fe20 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.3", + "version": "0.1.4", "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.3" + "version": "0.1.4" } }, "prereqs": { diff --git a/Makefile b/Makefile index 6329225..c78ccb9 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.3 +EXTVERSIONS = 0.1.4 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.3.sql: sql/$(EXTENSION).sql +sql/$(EXTENSION)--0.1.4.sql: sql/$(EXTENSION).sql cat $^ > $@ diff --git a/Trunk.toml b/Trunk.toml index 59bfe55..dc8cb77 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.3" +version = "0.1.4" [build] postgres_version = "15" diff --git a/doc/guide.md b/doc/guide.md index 89dcfad..24ec5c7 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.3` 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.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. 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 4240f5c..c007816 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.3' +default_version = '0.1.4' module_pathname = '$libdir/timeseries' requires = 'columnar, pg_cron, pg_partman'