Skip to content

Commit

Permalink
Bump for release
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmp85 committed May 17, 2024
1 parent 99a03e2 commit 4c21549
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"
],
Expand All @@ -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": {
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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 $^ > $@
2 changes: 1 addition & 1 deletion Trunk.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion doc/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion timeseries.control
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit 4c21549

Please sign in to comment.