forked from chrisdone-archive/ini
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modify Semigroup behavior to avoid discarding (closes chrisdone-archi…
- Loading branch information
1 parent
c4cfe3a
commit b18c194
Showing
3 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Changes to the `ini` package | ||
===== | ||
|
||
v0.5 | ||
----- | ||
|
||
The behavior of `(<>)` and `mappend` for the `Ini` type has changed. | ||
|
||
* `<>` previously discarded all `iniGlobals`. Now it concatenates | ||
the globals from the two `Ini` values. | ||
|
||
* When two `Ini` values contained `iniSections` with the same name, | ||
`<>` previously returned the section from the left value and | ||
discarded the section of the same name from the right value. | ||
Now it concatenates the sections of the same name. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters