Skip to content

Commit

Permalink
Stamp 1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tvondra committed Dec 24, 2024
1 parent 14dfbe4 commit 04cef3d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "t-digest",
"abstract": "Aggregate for an on-line accumulation of rank-based statistics such as quantiles and trimmed means.",
"description": "This PostgreSQL extension implements t-digest, a data structure for on-line accumulation of rank-based statistics such as quantiles and trimmed means. The algorithm is also very friendly to parallel programs.",
"version": "1.4.2",
"version": "1.4.3",
"maintainer": [
"Tomas Vondra <[email protected]>",
"Nils Dijk <[email protected]>"
Expand All @@ -17,9 +17,9 @@
},
"provides": {
"quantile": {
"file": "sql/quantile--1.4.1--1.4.2.sql",
"file": "sql/quantile--1.4.2--1.4.3.sql",
"docfile" : "README.md",
"version": "1.4.2"
"version": "1.4.3"
}
},
"resources": {
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ MODULE_big = tdigest
OBJS = tdigest.o

EXTENSION = tdigest
DATA = tdigest--1.0.0.sql tdigest--1.0.0--1.0.1.sql tdigest--1.0.1--1.2.0.sql tdigest--1.2.0--1.3.0.sql tdigest--1.3.0--1.4.0.sql tdigest--1.4.0--1.4.1.sql tdigest--1.4.1--1.4.2.sql
DATA = tdigest--1.0.0.sql tdigest--1.0.0--1.0.1.sql tdigest--1.0.1--1.2.0.sql tdigest--1.2.0--1.3.0.sql tdigest--1.3.0--1.4.0.sql tdigest--1.4.0--1.4.1.sql tdigest--1.4.1--1.4.2.sql tdigest--1.4.2--1.4.3.sql
MODULES = tdigest

CFLAGS=`pg_config --includedir-server`
Expand Down
Empty file added tdigest--1.4.2--1.4.3.sql
Empty file.
2 changes: 1 addition & 1 deletion tdigest.control
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
comment = 'Provides tdigest aggregate function.'
default_version = '1.4.2'
default_version = '1.4.3'
relocatable = true

0 comments on commit 04cef3d

Please sign in to comment.