diff --git a/README.md b/README.md index 956b1b8..7bfaaa8 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ `python-format` is implementation of Python's `str.format`. It works both in browser and in Node.js. If you want to use this in Node.js, -just type `npm install python-format` in console. +just use `npm install python-format` in console. ```javascript var format = require('python-format') @@ -11,13 +11,16 @@ console.log(format('Hello, {}!', 'world')) If you want to use this in browser, download [python-format.js](https://raw.github.com/xfix/python-format/master/lib/python-format.js), -if you want, pass it using your favorite JavaScript minifizer (I prefer +and if you want, pass it using your favorite JavaScript minifizer (I prefer [UglifyJS](http://lisperator.net/uglifyjs/), but you can use other minifizers). -For more details see . +For more details, see . # Changelog +## 1.0.2 +* Grouping of digits now works properly with @johnbellessa's patches. + ## 1.0.1 * `-0` is returned instead of `0` when dealing with `format('{:g}', -0)`. diff --git a/package.json b/package.json index eb20a62..cdcbc35 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "author": "Konrad Borowski ", "name": "python-format", "description": "Python's str.format() implementation", - "version": "v1.0.1", + "version": "v1.0.2", "keywords": [ "string", "format", "python", "sprintf", "printf" ], "homepage": "https://github.com/xfix/python-format", "bugs": { "url": "https://github.com/xfix/python-format/issues" },