mirror of
https://github.com/plexusorg/toml4j.git
synced 2024-12-28 19:24:15 +00:00
Removed misc. section of change log. Added to CONTRIBUTING.md. Clarified
javadoc. [ci skip]
This commit is contained in:
parent
1a8e991f95
commit
1bc8d4bcc5
3 changed files with 6 additions and 7 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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>
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue