update version number and add changelog

This commit is contained in:
Konstantin Käfer
2011-06-28 15:04:40 +02:00
parent fcca6a4dc3
commit 50c87fbee4
2 changed files with 17 additions and 2 deletions

9
CHANGELOG.md Normal file
View File

@@ -0,0 +1,9 @@
# 0.1.0
- Modified interface to conform to Tilesource interface:
- `tile(x, y, z, callback)` is now `getTile(z, x, y, callback)`. Note the changed order of arguments.
- `grid(x, y, z, callback)` is now `getGrid(z, x, y, callback)`. Note the changed order of arguments.
- Added `getInfo(callback)` method.
- Removed `index.js` with `pool`, `serve` and `store` functions.
- MBTiles objects now create their databases as a singleton. There's no need to add additional pooling around MBTiles objects; you can create as many as you want.
- The constructor now takes Tilesource URIs (e.g. mbtiles:///path/to/file.mbtiles) as strings and parsed URIs as a hash.