Skip to content

Commit d14c255

Browse files
author
Timon Karnezos
committed
Version bumped to 2.9.0.
1 parent 090a6b4 commit d14c255

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.markdown

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2013-12-16
2+
==========
3+
v2.9.0 - Fixed [issue #16](https://github.com/aggregateknowledge/postgresql-hll/issues/16), `bitstream_pack` fixed to write one byte at a time to avoid writing to unallocated memory.
4+
15
2013-07-16
26
==========
37
v2.8.0 - Fixed [issue #2](https://github.com/aggregateknowledge/postgresql-hll/issues/2), `hll_add_agg` now returns `hll_empty` on input of an empty set. (Thanks to @ozgune!)

README.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ Build
372372

373373
Specify versions:
374374

375-
export VER=2.8.0
375+
export VER=2.9.0
376376
export PGSHRT=91
377377

378378
Make sure `Makefile` points to the correct `pg_config` for the specified version, since `rpmbuild` doesn't respect env variables:
@@ -390,11 +390,11 @@ Execute rpmbuild:
390390

391391
Install RPM:
392392

393-
rpm -Uv rpmbuild/RPMS/x86_64/postgresql91-hll-2.8.0-0.x86_64.rpm
393+
rpm -Uv rpmbuild/RPMS/x86_64/postgresql91-hll-2.9.0-0.x86_64.rpm
394394

395395
And if you want the debugging build:
396396

397-
rpm -Uv rpmbuild/RPMS/x86_64/postgresql91-hll-debuginfo-2.8.0-0.x86_64.rpm
397+
rpm -Uv rpmbuild/RPMS/x86_64/postgresql91-hll-debuginfo-2.9.0-0.x86_64.rpm
398398

399399

400400
## From source ##

postgresql-hll.spec

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
Summary: Aggregate Knowledge HyperLogLog PostgreSQL extension.
2121
Name: postgresql%{shortversion}-hll
22-
Version: 2.8.0
22+
Version: 2.9.0
2323
Release: 0
2424
License: Apache License, Version 2.0
2525
URL: https://github.com/aggregateknowledge/postgresql-hll
@@ -67,6 +67,8 @@ rm -rf $RPM_BUILD_ROOT
6767
%{pgbaseinstdir}/lib/hll.so
6868

6969
%changelog
70+
* Mon Dev 16 2013 Timon Karnezos <timon.karnezos@gmail.com> - 2.9.0-0
71+
- bitstream_pack fixed to write one byte at a time to avoid writing to unallocated memory
7072
* Tue Jul 16 2013 Timon Karnezos <timon.karnezos@gmail.com> - 2.8.0-0
7173
- hll_add_agg now returns hll_empty on input of an empty set
7274
* Wed Jun 12 2013 Timon Karnezos <timon.karnezos@gmail.com> - 2.7.1-0

0 commit comments

Comments
 (0)