* Remove *alias* tiles in `.parent()`, `.children()`, `.neighbors()` and `.tiles()` methods for Variable Matrix Width TileMatrixSets (https://github.com/developmentseed/morecantile/pull/136)
5.0.1
* ~~Remove *alias* tiles in `.parent()`, `.children()`, `.neighbors()` and `.tiles()` methods for Variable Matrix Width TileMatrixSets (https://github.com/developmentseed/morecantile/pull/136)~~
5.0.0
* update pydantic requirement to `~=2.0`
* add support for TileMatrixSets with Variable Matrix Width
* add `variableMatrixWidths` to the `TileMatrix` model
* add `TileMatrixSet._lr()` (and `lr()`) to retrieve the lower right coordinates of a tile (instead of using upper-left of tile+1)
* switch to `functools.cached_property` to cache properties (instead of cachetools.LRUcache)
* rename `_is_quadtree` property to `is_quadtree` in `TileMatrixSet` model
* fix possible bug in `TileMatrixSet._tile()` (and `.tile()`) method to make sure x or y are not greater than `matrixWidth - 1` or `matrixHeight - 1`
4.3.0
* add `.srs` property to `CRSType` * forward arguments to `pyproj.CRS` methods for `to_epsg()`, `to_wkt()`, `to_proj4()` and `to_json()` CRSType methods
4.2.1
* limit pydantic requirement to `~=1.0``
4.2.0
* add `to_proj4` and `to_dict` and `to_json` methods to `CRSType` * remove `TileMatrixSet._crs` (replaced with `TileMatrixSet.crs._pyproj_crs`)