Skip to content

Commit afb1607

Browse files
authored
Merge branch 'master' into ed/doc-not_null
2 parents c8ccb8c + 3e107aa commit afb1607

File tree

11 files changed

+551
-149
lines changed

11 files changed

+551
-149
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
echo "LIBPQJL_DATABASE_USER=$USER" >> $GITHUB_ENV
103103
if: ${{ runner.os == 'macOS' }}
104104
- name: Start Homebrew PostgreSQL service
105-
run: pg_ctl -D /usr/local/var/postgres start
105+
run: pg_ctl -D /usr/local/var/postgresql@$(psql --version | cut -f3 -d' ' | cut -f1 -d.) start
106106
if: ${{ runner.os == 'macOS' }}
107107
# Windows
108108
- name: Add PostgreSQL to Path

Project.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "LibPQ"
22
uuid = "194296ae-ab2e-5f79-8cd4-7183a0a5a0d1"
33
license = "MIT"
4-
version = "1.11.1"
4+
version = "1.14.0"
55

66
[deps]
77
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
@@ -17,21 +17,23 @@ LibPQ_jll = "08be9ffa-1c94-5ee5-a977-46a84ec9b350"
1717
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
1818
Memento = "f28f55f0-a522-5efc-85c2-fe41dfb9b2d9"
1919
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
20+
SQLStrings = "af517c2e-c243-48fa-aab8-efac3db270f5"
2021
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
2122
TimeZones = "f269a46b-ccf7-5d73-abea-4c690281aa53"
2223

2324
[compat]
2425
CEnum = "0.2, 0.3, 0.4"
2526
DataFrames = "0.20, 0.21"
2627
Decimals = "0.4.1"
27-
DocStringExtensions = "0.8.0"
28+
DocStringExtensions = "0.8.0, 0.9.1"
2829
Infinity = "0.2"
2930
Intervals = "1.4"
3031
IterTools = "1"
3132
LayerDicts = "1"
3233
LibPQ_jll = "14"
3334
Memento = "0.10, 0.11, 0.12, 0.13, 1"
3435
OffsetArrays = "0.9.1, 0.10, 0.11, 1"
36+
SQLStrings = "0.1"
3537
Tables = "0.2, 1"
3638
TimeZones = "0.9.2, 0.10, 0.11, 1"
3739
julia = "1.6"

0 commit comments

Comments
 (0)