JuliaDatabases / LibPQ.jl

A Julia wrapper for libpq
MIT License
217 stars 51 forks source link

New Release? #291

Closed har7an closed 2 months ago

har7an commented 7 months ago

Hello,

I wanted to know if maybe you could release a new version of LibPQ? I noticed that the latest release 1.17.1 restricts LibPQ_jll to major version 14, which in turn pulls in an OpenSSL < 3. This causes a few problems for my project because I don't have access to the old OpenSSL. If I restrict LibPQ_jll to >=16 via compat, installation of LibPQ pulls in version 1.4, which is apparently the last version without the LibPQ_jll dependency. This however brings its own set of problems...

Since compat-tables in downstream projects can only restrict packages to full semver versions (as far as I know), I don't have a way of specifying that downstream consumers of my code shall pull in a non-released version of LibPQ either. Otherwise I would just take that, add a compat entry for the most recent commit, and live with the solution for the time being, but I can't. :(

Thanks in advance!

curtd commented 2 months ago

It looks like the patch version (with LibPQ_jll >= 16 compatibility) was bumped but a release was never tagged nor registered in the General registry -- commit

Could you please cut a release on this commit @iamed2 (or any other maintainer) when you're able to? Thank you!

iamed2 commented 2 months ago

I will take some time today or tomorrow to make sure the doctests run and then do so.

iamed2 commented 2 months ago

I'll register current master branch after https://github.com/JuliaRegistries/General/pull/113343 is merged, shouldn't be too long

iamed2 commented 2 months ago

Done

curtd commented 2 months ago

Done

Much appreciated, thank you!