packages feed

pgvector 0.1.0 → 0.1.1

raw patch · 3 files changed

+9/−5 lines, 3 filesdep ~basedep ~postgresql-simple

Dependency ranges changed: base, postgresql-simple

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+## 0.1.1 (2025-03-06)++- Added support for GHC 9.8++ ## 0.1.0 (2023-04-12)  - First release
LICENSE.txt view
@@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2023 Andrew Kane+Copyright (c) 2023-2025 Andrew Kane  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
pgvector.cabal view
@@ -1,6 +1,6 @@ cabal-version:      3.0 name:               pgvector-version:            0.1.0+version:            0.1.1 synopsis:           pgvector support for Haskell description:        Adds the vector data type to postgresql-simple category:           Database@@ -19,7 +19,7 @@ source-repository this   type:     git   location: https://github.com/pgvector/pgvector-haskell.git-  tag:      v0.1.0+  tag:      v0.1.1  common warnings     ghc-options: -Wall@@ -28,9 +28,9 @@     import:           warnings     exposed-modules:  Pgvector     build-depends:-        base >= 4.6 && < 4.19,+        base >= 4.6 && < 4.22,         bytestring >= 0.10 && < 0.12,-        postgresql-simple >= 0.6 && < 0.7+        postgresql-simple >= 0.6 && < 0.8     hs-source-dirs:   src     default-language: Haskell2010