v0.8.0: optional automatic version/schema pinning
- added the ability to automatically use the verified version/schema
this means there are now 3 ways to initialize the client:
//option 1 - latest schema, latest version - unverified
let client = xivapiClient()
//option 2 - providing your own schema/version
let schema = "exdschema@9942dd96c70dfbba55bbc4280da144e5cb410737-2024.11.06.0000.0000"
let client = xivapiClient(schema: schema, version: "7.15")
//option 3 - using the schema/version this version of the package was verified against
let client = xivapiClient(automaticallyPin: true)
Full Changelog: v0.7.0...v0.8.0