Skip to content

v2.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 07 Jan 05:28
· 285 commits to master since this release
71971dd

2.0.0 (2022-01-07)

Bug Fixes

Features

  • make Reader a named export (4ef00ff)

BREAKING CHANGES

  • Reader class is no longer a default export:
- import Reader from 'mmdb-lib';
+ import { Reader } from 'mmdb-lib';

const reader = new Reader<CityResponse>(db);