Removed misc. section of change log. Added to CONTRIBUTING.md. Clarified

javadoc.

[ci skip]
This commit is contained in:
moandji.ezana 2015-02-08 23:56:54 +02:00
parent 1a8e991f95
commit 1bc8d4bcc5
3 changed files with 6 additions and 7 deletions

View file

@ -5,17 +5,14 @@
### Changed
* Toml#getList(String) replaced Toml#getList(String, Class)
* Dropped dependency on Parboiled and its significant transitive dependencies
* Updated Gson to 2.3.1
### Fixed
* Fixed short-form Unicode escapes
* Fixed exponent handling
### Misc.
* Dropped dependency on Parboiled and its significant transitive dependencies
* Updated Gson to 2.3.1
## 0.3.1 / 2014-12-16
* Support for [TOML 0.3.1](https://github.com/toml-lang/toml/tree/v0.3.1) spec
* Pass TOML validator (https://github.com/BurntSushi/toml-test), which uncovered many bugs.

View file

@ -1,6 +1,8 @@
Thank you for taking the time to contribute to toml4j! Here are a few guidelines to streamline the process.
* New or modified functionality MUST be covered by unit tests
* Cover new or modified functionality with unit tests
* Amend README.md as necessary
* Update the UNRELEASED section of CHANGELOG.md, as described in [keepachangelog.com](http://keepachangelog.com)
* Use 2 spaces for indentation
* Opening braces, parentheses, etc. are not on a new line

View file

@ -25,7 +25,7 @@ import com.google.gson.JsonElement;
/**
* <p>Provides access to the keys and tables in a TOML data source.</p>
*
* <p>All getters can fall back to default values if they have been provided.
* <p>All getters can fall back to default values if they have been provided as a constructor argument.
* Getters for simple values (String, Date, etc.) will return null if no matching key exists.
* {@link #getList(String)}, {@link #getTable(String)} and {@link #getTables(String)} return empty values if there is no matching key.</p>
*