I have a doubt regarding compatibility of pypgstac and pgstac database with different versions. I use pypgstac 0.4.3 to upload data to the pgstac database programmatically: ```python import asyncio from pypgstac.load import load_ndjson dsn = "..." asyncio.run( load_ndjson(file="items.njson", table="items", dsn=dsn, method="insert") ) ``` Is it safe to use this code to populate v0.6.X pgstac database or pypgstac must be the same version as the database? I think it makes sense to reflect this information in docs.