v1.1.1
Breaking changes
This release should have incremented the major version number. These release notes are added in retrospect. Apologies for any inconvenience this may have caused.
Initialization of the database reader has been separated from construction of the class.
Old
const ip2lReader = new Ip2lReader('/path/to/database.bin', options);New
const ip2lReader = new Ip2lReader();
await ip2lReader.init('/path/to/database.bin', options);This change was made so that accurate identification of the "ready" state is possible without polling.
Chores
- Readme updates
Full Changelog: v1.1.0...v1.1.1