Skip to content

Commit 91d26f0

Browse files
committed
prepare for v3.2 release
1 parent c286d87 commit 91d26f0

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

CHANGELOG

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1-
3.2:
1+
3.2: (2025-10-10)
22
- add support for OFFSET/LIMIT (pull 82)
3+
- add paging support for ldap (pull 89)
4+
- fix ldap right parens escaping (pull 89)
35

4-
3.1:
6+
3.1: (2025-09)
57
- add support for Python 3.13
68
- add support for pg18
79
- drop support for Postgres versions prior to 14
810
- rework usage Doc from Sphinx into simple Markdown
911

10-
3.0:
12+
3.0: (2024-09)
1113
- drop support for Python 3 versions prior to 3.9
1214
- drop support for Postgres versions prior to 12
1315
- PG14: fix DELETE to not passing rowid_column to the FDW (https://github.com/pgsql-io/multicorn2/pull/41)

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ Multicorn2
44

55
Multicorn Python3 Foreign Data Wrapper (FDW) for Postgresql. Tested on Linux w/ Python 3.9-3.13 & Postgres 14-18.
66

7-
Our latest prod release, v3.1, supports thru pg18 (and has some testing against Python 3.13).
7+
Our latest release is v3.2 and it supports basic pushdown for offset/limit.
8+
Release v3.1 supports thru pg18 (and has some testing against Python 3.13).
89
Newest versions of major linux distro's (Ubuntu 24.04 & EL10) ship with Python 3.12 so sticking with using 3.12 (instead of 3.13) is advised in the short run.
910
Python 3.9 is already deprecated by the CPython community and will soon be unsupported by this extension; use 3.10 thru 3.12 instead.
1011

@@ -69,9 +70,9 @@ sudo make install
6970
```bash
7071
set PATH=/usr/local/pgsql/bin:$PATH
7172
cd ~/postgresql-18.0/contrib
72-
wget https://github.com/pgsql-io/multicorn2/archive/refs/tags/v3.1.tar.gz
73-
tar -xvf v3.1.tar.gz
74-
cd multicorn2-3.1
73+
wget https://github.com/pgsql-io/multicorn2/archive/refs/tags/v3.x.tar.gz
74+
tar -xvf v3.x.tar.gz
75+
cd multicorn2-3.x
7576
make
7677
sudo make install
7778
```
@@ -102,9 +103,9 @@ sudo yum -y install git python3 python3-devel python3-pip
102103

103104
### Download & Compile Multicorn2
104105
```bash
105-
wget https://github.com/pgsql-io/multicorn2/archive/refs/tags/v3.1.tar.gz
106-
tar -xvf v3.1.tar.gz
107-
cd multicorn2-3.1
106+
wget https://github.com/pgsql-io/multicorn2/archive/refs/tags/v3.x.tar.gz
107+
tar -xvf v3.x.tar.gz
108+
cd multicorn2-3.x
108109
make
109110
sudo make install
110111
```

0 commit comments

Comments
 (0)