Skip to content

Commit

Permalink
Upgrade to pgrx v0.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Aug 26, 2024
1 parent 1aabd0c commit b25616c
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 46 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
container: pgxn/pgxn-tools
strategy:
matrix:
pg: [12, 13, 14, 15, 16]
pg: [12, 13, 14, 15, 16, 17]
name: 🐘 Postgres ${{ matrix.pg }}
steps:
- name: Checkout
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,17 @@ All notable changes to this project will be documented in this file. It uses the

### ⬆️ Dependency Updates

* Upgraded pgrx to v0.12.0
* Upgraded pgrx to v0.12.1

### ⚡ Improvements

* Made the extension relocatable

### 📔 Notes

* Dropped support for Postgres 11 (no longer supported by pgrx).
* Added support for Postgres 17.

## [v0.1.1] --- 2024-06-12

The theme of this release is *fast follows.*
Expand Down
90 changes: 48 additions & 42 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,16 @@ pg13 = ["pgrx/pg13", "pgrx-tests/pg13" ]
pg14 = ["pgrx/pg14", "pgrx-tests/pg14" ]
pg15 = ["pgrx/pg15", "pgrx-tests/pg15" ]
pg16 = ["pgrx/pg16", "pgrx-tests/pg16" ]
pg17 = ["pgrx/pg17", "pgrx-tests/pg17" ]
pg_test = []

[dependencies]
pgrx = "0.12.0-beta.2"
pgrx = "0.12.1"
boon = "0.6"
serde_json = "1.0"

[dev-dependencies]
pgrx-tests = "0.12.0-beta.2"
pgrx-tests = "0.12.1"

[profile.dev]
panic = "unwind"
Expand Down

0 comments on commit b25616c

Please sign in to comment.