Skip to content

Commit

Permalink
v3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marzer committed Oct 13, 2023
1 parent cc1962e commit 3017243
Show file tree
Hide file tree
Showing 11 changed files with 258 additions and 250 deletions.
3 changes: 0 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ trim_trailing_whitespace = true
charset = utf-8
max_line_length = 120

[*.{md,markdown}]
trim_trailing_whitespace = false

[*.{gitattributes,yaml,yml,vcxproj,vcxproj.filters,sln,rc,clang-format,toml,py,cmake}]
indent_style = space

Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ template:
-->

## Unreleased
## v3.4.0

#### Fixes

Expand All @@ -37,7 +37,7 @@ template:

#### Additions

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

#### Changes:

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14)

project(
tomlplusplus
VERSION 3.3.0
VERSION 3.4.0
DESCRIPTION "Header-only TOML config file parser and serializer for C++17"
HOMEPAGE_URL "https://marzer.github.io/tomlplusplus/"
LANGUAGES CXX
Expand Down
5 changes: 2 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ cd build-debug && ninja && ninja test \

## Testing with the [toml-test] suite

As an optional extra you may wish to test against the 'official' test TOML test suite, [BurntSushi/toml-test]. See the
As an optional extra you may wish to test against the official test TOML test suite, [toml-test]. See the
instructions at [toml-test/README](./toml-test/README.md). Note that the toml++ tests already consume tests from the
offical suite via a C++ code-generation script so you are not expected to take this extra step as part of contributing
to the library.
Expand All @@ -77,5 +77,4 @@ to the library.
[test adapter for catch2]: https://marketplace.visualstudio.com/items?itemName=JohnnyHendriks.ext01
[reporting issues]: https://github.com/marzer/tomlplusplus/issues
[catch2]: https://github.com/catchorg/Catch2
[toml-test]: https://github.com/BurntSushi/toml-test
[burntsushi/toml-test]: https://github.com/BurntSushi/toml-test
[toml-test]: https://github.com/toml-lang/toml-test
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,15 +113,15 @@ You'll find some more code examples in the `examples` directory, and plenty more
### Conan
Add `tomlplusplus/3.3.0` to your conanfile.
Add `tomlplusplus/3.4.0` to your conanfile.
### DDS
Add `tomlpp` to your `package.json5`, e.g.:
```plaintext
depends: [
'tomlpp^3.3.0',
'tomlpp^3.4.0',
]
```

Expand Down Expand Up @@ -166,7 +166,7 @@ include(FetchContent)
FetchContent_Declare(
tomlplusplus
GIT_REPOSITORY https://github.com/marzer/tomlplusplus.git
GIT_TAG v3.3.0
GIT_TAG v3.4.0
)
FetchContent_MakeAvailable(tomlplusplus)
```
Expand Down
Loading

0 comments on commit 3017243

Please sign in to comment.