CHANGELOG.md 2.7 KB
Newer Older
Lab机器人's avatar
readme  
Lab机器人 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
2.3.0 - July 13 2015
====================

* Correctly handle quoted keys ([#21](https://github.com/BinaryMuse/toml-node/issues/21))

2.2.3 - June 8 2015
===================

* Support empty inline tables ([#24](https://github.com/BinaryMuse/toml-node/issues/24))
* Do not allow implicit table definitions to replace value ([#23](https://github.com/BinaryMuse/toml-node/issues/23))
* Don't allow tables to replace inline tables ([#25](https://github.com/BinaryMuse/toml-node/issues/25))

2.2.2 - April 3 2015
====================

* Correctly handle newlines at beginning of string ([#22](https://github.com/BinaryMuse/toml-node/issues/22))

2.2.1 - March 17 2015
=====================

* Parse dates generated by Date#toISOString() ([#20](https://github.com/BinaryMuse/toml-node/issues/20))

2.2.0 - Feb 26 2015
===================

* Support TOML spec v0.4.0

2.1.0 - Jan 7 2015
==================

* Support TOML spec v0.3.1

2.0.6 - May 23 2014
===================

### Bug Fixes

* Fix support for empty arrays with newlines ([#13](https://github.com/BinaryMuse/toml-node/issues/13))

2.0.5 - May 5 2014
==================

### Bug Fixes

* Fix loop iteration leak, by [sebmck](https://github.com/sebmck) ([#12](https://github.com/BinaryMuse/toml-node/pull/12))

### Development

* Tests now run JSHint on `lib/compiler.js`

2.0.4 - Mar 9 2014
==================

### Bug Fixes

* Fix failure on duplicate table name inside table array ([#11](https://github.com/BinaryMuse/toml-node/issues/11))

2.0.2 - Feb 23 2014
===================

### Bug Fixes

* Fix absence of errors when table path starts or ends with period

2.0.1 - Feb 23 2014
===================

### Bug Fixes

* Fix incorrect messaging in array type errors
* Fix missing error when overwriting key with table array

2.0.0 - Feb 23 2014
===================

### Features

* Add support for [version 0.2 of the TOML spec](https://github.com/mojombo/toml/blob/master/versions/toml-v0.2.0.md) ([#9](https://github.com/BinaryMuse/toml-node/issues/9))

### Internals

* Upgrade to PEG.js v0.8 and rewrite compiler; parser is now considerably faster (from ~7000ms to ~1000ms to parse `example.toml` 1000 times on Node.js v0.10)

1.0.4 - Aug 17 2013
===================

### Bug Fixes

* Fix support for empty arrays

1.0.3 - Aug 17 2013
===================

### Bug Fixes

* Fix typo in array type error message
* Fix single-element arrays with no trailing commas

1.0.2 - Aug 17 2013
===================

### Bug Fixes

* Fix errors on lines that contain only whitespace ([#7](https://github.com/BinaryMuse/toml-node/issues/7))

1.0.1 - Aug 17 2013
===================

### Internals

* Remove old code remaining from the remove streaming API

1.0.0 - Aug 17 2013
===================

Initial stable release