Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
memowe committed Jul 27, 2021
1 parent 65030df commit c90a571
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Revision history for trivialini

## TODO
## 0.3.1.0 -- 2021-07-27

* Allow whitespace in keys (Alexander Pankoff @ccntrq)
* Make section headers a little bit more strict
* Improve test suite
* Add Haddock API docs generation to GitHub Pages
* Improve parser readability

## 0.3.0.0 -- 2021-07-14

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ answer = 42
name = Boaty McBoatface
```

There are two *sections* (inbetween `[` and `]`) defined, `something` and `something else`. These sections contain a dictionary of Strings each, the keys being some string followed by `=`, and anything else until end of the line as values.
There are two *sections* (inbetween `[` and `]`) defined, `something` and `something else`. These sections contain a dictionary of Strings each, the keys being some string followed by `=`, and anything else until end of the line as values. The leading and trailing spaces in section headers, keys and values are trimmed.

**trivialini** parses this data structure as an `Ini`, which is simply a map of maps of strings:

Expand Down
2 changes: 1 addition & 1 deletion trivialini.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: trivialini
version: 0.3.0.0
version: 0.3.1.0
synopsis: Ultra light weight ini file parser
homepage: https://github.com/memowe/trivialini
license: MIT
Expand Down

0 comments on commit c90a571

Please sign in to comment.