Skip to content

Commit 23f9071

Browse files
committed
Release v0.5.0.
1 parent 60cabca commit 23f9071

File tree

3 files changed

+848
-5
lines changed

3 files changed

+848
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# TOML Changelog
22

3-
## HEAD
3+
## 0.5.0 / 2018-07-11
44

55
* Add dotted keys.
66
* Add hex, octal, and binary integer formats.

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,16 @@ Tom's Obvious, Minimal Language.
88
By Tom Preston-Werner.
99

1010
Latest tagged version:
11-
[v0.4.0](https://github.com/mojombo/toml/blob/master/versions/en/toml-v0.4.0.md).
11+
[v0.5.0](https://github.com/mojombo/toml/blob/master/versions/en/toml-v0.5.0.md).
1212

1313
NOTE: The `master` branch of this repository tracks the very latest development
1414
and may contain features and changes that do not exist on any released version.
1515
To find the spec for a specific version, look in the `versions` subdirectory.
1616

17-
The next planned release is v1.0.0. The intention is for this release to be
18-
fully backwards compatible with v0.4.0.
17+
As of version 0.5.0, TOML should be considered extremely stable. The goal is for
18+
version 1.0.0 to be backwards compatible (as much as humanly possible) with
19+
version 0.5.0. All implementations are strongly encouraged to become 0.5.0
20+
compatible so that the transition to 1.0.0 will be simple when that happens.
1921

2022
Objectives
2123
----------
@@ -652,7 +654,7 @@ yourself gripped with this desire, it means you should be using standard tables.
652654
```toml
653655
name = { first = "Tom", last = "Preston-Werner" }
654656
point = { x = 1, y = 2 }
655-
animal = { type.name = "pug" }
657+
animal = { type.name = "pug" }
656658
```
657659

658660
The inline tables above are identical to the following standard table

0 commit comments

Comments
 (0)