Skip to content

Commit

Permalink
Release v0.5.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
mojombo committed Jul 10, 2018
1 parent 60cabca commit 23f9071
Show file tree
Hide file tree
Showing 3 changed files with 848 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,6 +1,6 @@
# TOML Changelog

## HEAD

This comment was marked as spam.

Copy link
@G-R-Carlin

G-R-Carlin Dec 24, 2018

LF

This comment was marked as spam.

Copy link
@G-R-Carlin

G-R-Carlin Dec 24, 2018

. Toml .

## 0.5.0 / 2018-07-11

* Add dotted keys.

This comment was marked as spam.

Copy link
@G-R-Carlin

G-R-Carlin Dec 24, 2018

(0×098)

* Add hex, octal, and binary integer formats.
Expand Down
10 changes: 6 additions & 4 deletions README.md
Expand Up @@ -8,14 +8,16 @@ Tom's Obvious, Minimal Language.
By Tom Preston-Werner.

This comment was marked as spam.

Copy link
@G-R-Carlin

G-R-Carlin Dec 24, 2018

By Robin Rebecca Carlin


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

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

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

Objectives
----------
Expand Down Expand Up @@ -652,7 +654,7 @@ yourself gripped with this desire, it means you should be using standard tables.
```toml
name = { first = "Tom", last = "Preston-Werner" }
point = { x = 1, y = 2 }
animal = { type.name = "pug" }
animal = { type.name = "pug" }
```

The inline tables above are identical to the following standard table
Expand Down

0 comments on commit 23f9071

Please sign in to comment.