Skip to content

Commit 4b166b6

Browse files
committed
v3.2.0
1 parent be0fbd5 commit 4b166b6

File tree

8 files changed

+15
-13
lines changed

8 files changed

+15
-13
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ template:
1414
1515
-->
1616

17-
## Unreleased
17+
## v3.2.0
18+
[Released](https://github.com/marzer/tomlplusplus/releases/tag/v3.2.0) 2022-08-29
1819

1920
#### Fixes:
2021
- fixed `[dotted.table]` source columns sometimes being off by one (#152) (@vaartis)
@@ -23,7 +24,7 @@ template:
2324

2425
#### Additions:
2526
- added value type deduction to `emplace()` methods
26-
- added `toml::path` utility type (#153, #156) (@jonestristand)
27+
- added `toml::path` utility type (#153, #156, #168) (@jonestristand, @kcsaul)
2728
- added config option `TOML_CALLCONV`
2829
- added missing relational operators for `source_position`
2930

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.1.0
5+
VERSION 3.2.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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,13 @@ You'll find some more code examples in the `examples` directory, and plenty more
104104
3. `#include <toml++/toml.h>`
105105
106106
### Conan
107-
Add `tomlplusplus/3.1.0` to your conanfile.
107+
Add `tomlplusplus/3.2.0` to your conanfile.
108108
109109
### DDS
110110
Add `tomlpp` to your `package.json5`, e.g.:
111111
```
112112
depends: [
113-
'tomlpp^3.1.0',
113+
'tomlpp^3.2.0',
114114
]
115115
```
116116
> ℹ&#xFE0F; _[What is DDS?](https://dds.pizza/)_
@@ -151,7 +151,7 @@ include(FetchContent)
151151
FetchContent_Declare(
152152
tomlplusplus
153153
GIT_REPOSITORY https://github.com/marzer/tomlplusplus.git
154-
GIT_TAG v3.1.0
154+
GIT_TAG v3.2.0
155155
)
156156
FetchContent_MakeAvailable(tomlplusplus)
157157
```

docs/pages/main_page.dox

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -453,15 +453,15 @@ and [emoji sundae] Regular. The API is the same for both.
453453

454454

455455
\subsection mainpage-adding-lib-conan Conan
456-
Add `tomlplusplus/3.1.0` to your conanfile.
456+
Add `tomlplusplus/3.2.0` to your conanfile.
457457

458458

459459

460460
\subsection mainpage-adding-lib-dds DDS
461461
Add `tomlpp` to your `package.json5`, e.g.:
462462
\json
463463
depends: [
464-
'tomlpp^3.1.0',
464+
'tomlpp^3.2.0',
465465
]
466466
\endjson
467467

@@ -507,7 +507,7 @@ include(FetchContent)
507507
FetchContent_Declare(
508508
tomlplusplus
509509
GIT_REPOSITORY https://github.com/marzer/tomlplusplus.git
510-
GIT_TAG v3.1.0
510+
GIT_TAG v3.2.0
511511
)
512512
FetchContent_MakeAvailable(tomlplusplus)
513513
\endcmake

include/toml++/impl/path.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ TOML_NAMESPACE_START
2020
/// \brief Represents a single component of a complete 'TOML-path': either a key or an array index
2121
class TOML_EXPORTED_CLASS path_component
2222
{
23+
/// \cond
2324
struct storage_t
2425
{
2526
static constexpr size_t size =

include/toml++/impl/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#pragma once
66

77
#define TOML_LIB_MAJOR 3
8-
#define TOML_LIB_MINOR 1
8+
#define TOML_LIB_MINOR 2
99
#define TOML_LIB_PATCH 0
1010

1111
#define TOML_LANG_MAJOR 1

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'tomlplusplus',
33
'cpp',
4-
version: '3.1.0',
4+
version: '3.2.0',
55
meson_version: '>=0.54.0',
66
license: 'MIT',
77
default_options: [ # https://mesonbuild.com/Builtin-options.html

toml.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//----------------------------------------------------------------------------------------------------------------------
22
//
3-
// toml++ v3.1.0
3+
// toml++ v3.2.0
44
// https://github.com/marzer/tomlplusplus
55
// SPDX-License-Identifier: MIT
66
//
@@ -932,7 +932,7 @@ TOML_ENABLE_WARNINGS;
932932
//******** impl/version.h ********************************************************************************************
933933

934934
#define TOML_LIB_MAJOR 3
935-
#define TOML_LIB_MINOR 1
935+
#define TOML_LIB_MINOR 2
936936
#define TOML_LIB_PATCH 0
937937

938938
#define TOML_LANG_MAJOR 1

0 commit comments

Comments
 (0)