|
2 | 2 |
|
3 | 3 | ## unreleased
|
4 | 4 |
|
5 |
| -* Allow newline after key/values in inline tables. |
6 |
| -* Allow trailing comma in inline tables. |
7 |
| -* Clarify where and how dotted keys define tables. |
8 |
| -* Add new `\e` shorthand for the escape character. |
9 |
| -* Add \x00 notation to basic strings. |
10 |
| -* Seconds in Date-Time and Time values are now optional. |
| 5 | +- Allow newline after key/values in inline tables. |
| 6 | +- Allow trailing comma in inline tables. |
| 7 | +- Clarify where and how dotted keys define tables. |
| 8 | +- Add new `\e` shorthand for the escape character. |
| 9 | +- Add \x00 notation to basic strings. |
| 10 | +- Seconds in Date-Time and Time values are now optional. |
11 | 11 |
|
12 | 12 | ## 1.0.0 / 2021-01-11
|
13 | 13 |
|
14 |
| -* Clarify how tables are created and defined. |
15 |
| -* Clarify and describe the top-level table. |
16 |
| -* Clarify that indentation before keys is ignored. |
17 |
| -* Clarify that indentation before table headers is ignored. |
18 |
| -* Clarify that indentation between array values is ignored. |
| 14 | +- Clarify how tables are created and defined. |
| 15 | +- Clarify and describe the top-level table. |
| 16 | +- Clarify that indentation before keys is ignored. |
| 17 | +- Clarify that indentation before table headers is ignored. |
| 18 | +- Clarify that indentation between array values is ignored. |
19 | 19 |
|
20 | 20 | ## 1.0.0-rc.3 / 2020-10-07
|
21 | 21 |
|
22 |
| -* Clarify that comments and newlines are allowed before commas in arrays. |
23 |
| -* Mark the ABNF as canonical, and reference it from the text specification. |
| 22 | +- Clarify that comments and newlines are allowed before commas in arrays. |
| 23 | +- Mark the ABNF as canonical, and reference it from the text specification. |
24 | 24 |
|
25 | 25 | ## 1.0.0-rc.2 / 2020-08-09
|
26 | 26 |
|
27 |
| -* Create https://toml.io as the new primary location to read the TOML spec. |
28 |
| -* Clarify meaning of "quotation marks". |
29 |
| -* Clarify meaning of "expected" value ranges. |
30 |
| -* Clarify that EOF is allowed after key/value pair. |
31 |
| -* Clarify that the various styles for writing keys are equivalent. |
32 |
| -* Clarify that line-ending backslashes must be unescaped in multi-line strings. |
33 |
| -* Add examples for invalid float values. |
| 27 | +- Create https://toml.io as the new primary location to read the TOML spec. |
| 28 | +- Clarify meaning of "quotation marks". |
| 29 | +- Clarify meaning of "expected" value ranges. |
| 30 | +- Clarify that EOF is allowed after key/value pair. |
| 31 | +- Clarify that the various styles for writing keys are equivalent. |
| 32 | +- Clarify that line-ending backslashes must be unescaped in multi-line strings. |
| 33 | +- Add examples for invalid float values. |
34 | 34 |
|
35 | 35 | ## 1.0.0-rc.1 / 2020-04-01
|
36 | 36 |
|
37 |
| -* Clarify in ABNF how quotes in multi-line basic and multi-line literal strings |
| 37 | +- Clarify in ABNF how quotes in multi-line basic and multi-line literal strings |
38 | 38 | are allowed to be used.
|
39 |
| -* Leading zeroes in exponent parts of floats are permitted. |
40 |
| -* Clarify that control characters are not permitted in comments. |
41 |
| -* Clarify behavior of tables defined implicitly by dotted keys. |
42 |
| -* Clarify that inline tables are immutable. |
43 |
| -* Clarify that trailing commas are not allowed in inline tables. |
44 |
| -* Clarify in ABNF that UTF-16 surrogate code points (U+D800 - U+DFFF) are not |
| 39 | +- Leading zeroes in exponent parts of floats are permitted. |
| 40 | +- Clarify that control characters are not permitted in comments. |
| 41 | +- Clarify behavior of tables defined implicitly by dotted keys. |
| 42 | +- Clarify that inline tables are immutable. |
| 43 | +- Clarify that trailing commas are not allowed in inline tables. |
| 44 | +- Clarify in ABNF that UTF-16 surrogate code points (U+D800 - U+DFFF) are not |
45 | 45 | allowed in strings or comments.
|
46 |
| -* Allow raw tab characters in basic strings and multi-line basic strings. |
47 |
| -* Allow heterogenous values in arrays. |
| 46 | +- Allow raw tab characters in basic strings and multi-line basic strings. |
| 47 | +- Allow heterogenous values in arrays. |
48 | 48 |
|
49 | 49 | ## 0.5.0 / 2018-07-11
|
50 | 50 |
|
51 |
| -* Add dotted keys. |
52 |
| -* Add hex, octal, and binary integer formats. |
53 |
| -* Add special float values (inf, nan). |
54 |
| -* Rename Datetime to Offset Date-Time. |
55 |
| -* Add Local Date-Time. |
56 |
| -* Add Local Date. |
57 |
| -* Add Local Time. |
58 |
| -* Add ABNF specification. |
59 |
| -* Allow space (instead of T) to separate date and time in Date-Time. |
60 |
| -* Allow accidental whitespace between backslash and newline in the line |
| 51 | +- Add dotted keys. |
| 52 | +- Add hex, octal, and binary integer formats. |
| 53 | +- Add special float values (inf, nan). |
| 54 | +- Rename Datetime to Offset Date-Time. |
| 55 | +- Add Local Date-Time. |
| 56 | +- Add Local Date. |
| 57 | +- Add Local Time. |
| 58 | +- Add ABNF specification. |
| 59 | +- Allow space (instead of T) to separate date and time in Date-Time. |
| 60 | +- Allow accidental whitespace between backslash and newline in the line |
61 | 61 | continuation operator in multi-line basic strings.
|
62 |
| -* Specify that the standard file extension is `.toml`. |
63 |
| -* Specify that MIME type is `application/toml` |
64 |
| -* Clarify that U+007F is an escape character. |
65 |
| -* Clarify that keys are always strings. |
66 |
| -* Clarify that you cannot use array-of-table to append to a static array. |
67 |
| -* Clarify that a TOML file must be a valid UTF-8 document. |
68 |
| -* Clarify valid Array values. |
69 |
| -* Clarify that literal strings can be table keys. |
70 |
| -* Clarify that at least millisecond precision expected for Date-Time and Time. |
71 |
| -* Clarify that comments are OK in multiline arrays. |
72 |
| -* Clarify that +0, -0, +0.0, and -0.0 are valid and what they mean. |
73 |
| -* TOML has a logo! |
| 62 | +- Specify that the standard file extension is `.toml`. |
| 63 | +- Specify that MIME type is `application/toml` |
| 64 | +- Clarify that U+007F is an escape character. |
| 65 | +- Clarify that keys are always strings. |
| 66 | +- Clarify that you cannot use array-of-table to append to a static array. |
| 67 | +- Clarify that a TOML file must be a valid UTF-8 document. |
| 68 | +- Clarify valid Array values. |
| 69 | +- Clarify that literal strings can be table keys. |
| 70 | +- Clarify that at least millisecond precision expected for Date-Time and Time. |
| 71 | +- Clarify that comments are OK in multiline arrays. |
| 72 | +- Clarify that +0, -0, +0.0, and -0.0 are valid and what they mean. |
| 73 | +- TOML has a logo! |
74 | 74 |
|
75 | 75 | ## 0.4.0 / 2015-02-12
|
76 | 76 |
|
77 |
| -* Add Inline Table syntax. |
78 |
| -* Allow underscores in numbers. |
79 |
| -* Remove forward slash as an escapable character. |
80 |
| -* Unicode escapes must be scalar values. |
81 |
| -* Newline is now defined as LF or CRLF. |
| 77 | +- Add Inline Table syntax. |
| 78 | +- Allow underscores in numbers. |
| 79 | +- Remove forward slash as an escapable character. |
| 80 | +- Unicode escapes must be scalar values. |
| 81 | +- Newline is now defined as LF or CRLF. |
82 | 82 |
|
83 | 83 | ## 0.3.1 / 2014-11-11
|
84 | 84 |
|
85 |
| -* Fix incorrect datetime examples. |
| 85 | +- Fix incorrect datetime examples. |
86 | 86 |
|
87 | 87 | ## 0.3.0 / 2014-11-10
|
88 | 88 |
|
89 |
| -* Add scientific notation for floats. |
90 |
| -* Allow optional + prefix on integers. |
91 |
| -* Switch to RFC 3339 for datetimes (allowing offsets and fractional seconds). |
92 |
| -* Add multiline and literal strings. |
93 |
| -* Clarify what characters valid keys can contain. |
| 89 | +- Add scientific notation for floats. |
| 90 | +- Allow optional + prefix on integers. |
| 91 | +- Switch to RFC 3339 for datetimes (allowing offsets and fractional seconds). |
| 92 | +- Add multiline and literal strings. |
| 93 | +- Clarify what characters valid keys can contain. |
94 | 94 |
|
95 | 95 | ## 0.2.0 / 2013-09-24
|
96 | 96 |
|
97 |
| -* Use "table" instead of "key group" terminology. |
98 |
| -* Add the ability to define nestable arrays of tables. |
| 97 | +- Use "table" instead of "key group" terminology. |
| 98 | +- Add the ability to define nestable arrays of tables. |
99 | 99 |
|
100 | 100 | ## 0.1.0 / 2013-03-17
|
101 | 101 |
|
102 |
| -* From Twitter rage to reality; TOML is now a thing. |
103 |
| -* First proper release. |
104 |
| -* TOML adheres to the SemVer standard for version numbers. |
| 102 | +- From Twitter rage to reality; TOML is now a thing. |
| 103 | +- First proper release. |
| 104 | +- TOML adheres to the SemVer standard for version numbers. |
0 commit comments