|
| 1 | +## 0.9.16 (August 13, 2024) |
| 2 | +- `BUGFIX` Fixes a serious regression bug where removing a section would break the file in random ways due to the assignment operator introduced in the previous version. This version removes the assignment operator until it can be implemented in a way that is compliant with expected behavior. ([issue #36](https://github.com/metayeti/mINI/issues/36)) |
| 3 | + |
1 | 4 | ## 0.9.15 (January 11, 2024) |
2 | | -- `BUGFIX` Fixes G++ warnings and implements a copy assignment operator for mINI::INIMap. ([#28](https://github.com/pulzed/mINI/pull/28)) |
| 5 | +- `BUGFIX` Fixes G++ warnings and implements a copy assignment operator for mINI::INIMap. ([pull #28](https://github.com/metayeti/mINI/pull/28)) |
3 | 6 |
|
4 | 7 | ## 0.9.14 (May 27, 2022) |
5 | | -- `BUGFIX` Fixes C4310 warning. ([#19](https://github.com/pulzed/mINI/issues/19)) |
| 8 | +- `BUGFIX` Fixes C4310 warning. ([issue #19](https://github.com/metayeti/mINI/issues/19)) |
6 | 9 |
|
7 | 10 | ## 0.9.13 (April 25, 2022) |
8 | | -- `BUGFIX` Writer now understands UTF-8 BOM-encoded files. ([#7](https://github.com/pulzed/mINI/issues/17)) |
| 11 | +- `BUGFIX` Writer now understands UTF-8 BOM-encoded files. ([issue #7](https://github.com/metayeti/mINI/issues/17)) |
9 | 12 | - `BUGFIX` Fixes a bug introduced in 0.9.12 where reader would break when reading empty files. |
10 | 13 |
|
11 | 14 | ## 0.9.12 (April 24, 2022) |
12 | | -- `BUGFIX` Fixes parser breaking for UTF-8 BOM-encoded files. ([#7](https://github.com/pulzed/mINI/issues/17)) |
| 15 | +- `BUGFIX` Fixes parser breaking for UTF-8 BOM-encoded files. ([issue #7](https://github.com/metayeti/mINI/issues/17)) |
13 | 16 |
|
14 | 17 | ## 0.9.11 (October 6, 2021) |
15 | 18 | - `BUGFIX` Fixes various compiler warnings. |
16 | 19 |
|
17 | 20 | ## 0.9.10 (March 4, 2021) |
18 | | -- `BUGFIX` Change delimiter constants to `const char* const` to prevent unnecessary allocations. ([#5](https://github.com/pulzed/mINI/issues/5)) |
| 21 | +- `BUGFIX` Change delimiter constants to `const char* const` to prevent unnecessary allocations. ([issue #5](https://github.com/metayeti/mINI/issues/5)) |
19 | 22 |
|
20 | 23 | ## 0.9.9 (February 22, 2021) |
21 | | -- `BUGFIX` Adds missing cctype header. ([#4](https://github.com/pulzed/mINI/pull/4)) |
| 24 | +- `BUGFIX` Adds missing cctype header. ([pull #4](https://github.com/metayeti/mINI/pull/4)) |
22 | 25 |
|
23 | 26 | ## 0.9.8 (February 14, 2021) |
24 | | -- `BUGFIX` Avoid C4244 warning. ([#2](https://github.com/pulzed/mINI/pull/2)) |
| 27 | +- `BUGFIX` Avoid C4244 warning. ([pull #2](https://github.com/metayeti/mINI/pull/2)) |
25 | 28 |
|
26 | 29 | ## 0.9.7 (August 14, 2018) |
27 | 30 | - `FEATURE` Adds case sensitivity toggle via a macro definition. |
|
44 | 47 | - `FEATURE` Empty key and section names are now allowed. |
45 | 48 |
|
46 | 49 | ## 0.9.2 (May 24, 2018) |
47 | | -- `BUGFIX` Fixes the multiple definition bug [#1](/../../issues/1) |
| 50 | +- `BUGFIX` Fixes the multiple definition bug [issue #1](/../../issues/1) |
48 | 51 | - `BUGFIX` Fixes a bug where a `write()` call to an empty file would begin writing at line 2 instead of 1 due to a reader bug. |
49 | 52 |
|
50 | 53 | ## 0.9.1 (May 20, 2018) |
|
0 commit comments