Skip to content

Commit 3017243

Browse files
committed
v3.4.0
1 parent cc1962e commit 3017243

File tree

11 files changed

+258
-250
lines changed

11 files changed

+258
-250
lines changed

.editorconfig

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ trim_trailing_whitespace = true
1010
charset = utf-8
1111
max_line_length = 120
1212

13-
[*.{md,markdown}]
14-
trim_trailing_whitespace = false
15-
1613
[*.{gitattributes,yaml,yml,vcxproj,vcxproj.filters,sln,rc,clang-format,toml,py,cmake}]
1714
indent_style = space
1815

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ template:
2121
2222
-->
2323

24-
## Unreleased
24+
## v3.4.0
2525

2626
#### Fixes
2727

@@ -37,7 +37,7 @@ template:
3737

3838
#### Additions
3939

40-
- improved support for using enums with `value_or()`
40+
- added support for using enums with `value_or()`
4141

4242
#### Changes:
4343

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14)
22

33
project(
44
tomlplusplus
5-
VERSION 3.3.0
5+
VERSION 3.4.0
66
DESCRIPTION "Header-only TOML config file parser and serializer for C++17"
77
HOMEPAGE_URL "https://marzer.github.io/tomlplusplus/"
88
LANGUAGES CXX

CONTRIBUTING.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ cd build-debug && ninja && ninja test \
6868

6969
## Testing with the [toml-test] suite
7070

71-
As an optional extra you may wish to test against the 'official' test TOML test suite, [BurntSushi/toml-test]. See the
71+
As an optional extra you may wish to test against the official test TOML test suite, [toml-test]. See the
7272
instructions at [toml-test/README](./toml-test/README.md). Note that the toml++ tests already consume tests from the
7373
offical suite via a C++ code-generation script so you are not expected to take this extra step as part of contributing
7474
to the library.
@@ -77,5 +77,4 @@ to the library.
7777
[test adapter for catch2]: https://marketplace.visualstudio.com/items?itemName=JohnnyHendriks.ext01
7878
[reporting issues]: https://github.com/marzer/tomlplusplus/issues
7979
[catch2]: https://github.com/catchorg/Catch2
80-
[toml-test]: https://github.com/BurntSushi/toml-test
81-
[burntsushi/toml-test]: https://github.com/BurntSushi/toml-test
80+
[toml-test]: https://github.com/toml-lang/toml-test

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,15 +113,15 @@ You'll find some more code examples in the `examples` directory, and plenty more
113113
114114
### Conan
115115
116-
Add `tomlplusplus/3.3.0` to your conanfile.
116+
Add `tomlplusplus/3.4.0` to your conanfile.
117117
118118
### DDS
119119
120120
Add `tomlpp` to your `package.json5`, e.g.:
121121
122122
```plaintext
123123
depends: [
124-
'tomlpp^3.3.0',
124+
'tomlpp^3.4.0',
125125
]
126126
```
127127

@@ -166,7 +166,7 @@ include(FetchContent)
166166
FetchContent_Declare(
167167
tomlplusplus
168168
GIT_REPOSITORY https://github.com/marzer/tomlplusplus.git
169-
GIT_TAG v3.3.0
169+
GIT_TAG v3.4.0
170170
)
171171
FetchContent_MakeAvailable(tomlplusplus)
172172
```

0 commit comments

Comments
 (0)