Skip to content

Commit abec693

Browse files
committed
Bump version to 0.2.1
1 parent 2d5b539 commit abec693

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.24)
2-
project(cppIni LANGUAGES CXX VERSION 0.2.0)
2+
project(cppIni LANGUAGES CXX VERSION 0.2.1)
33

44
set(CMAKE_CXX_STANDARD 20)
55
set(CMAKE_CXX_STANDARD_REQUIRED ON)

conanfile.py

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,19 @@
2626
#
2727
# You should have received a copy of the GNU General Public License
2828
# along with this program. If not, see <https://www.gnu.org/licenses/>.
29+
#
30+
# This program is free software: you can redistribute it and/or modify
31+
# it under the terms of the GNU General Public License as published by
32+
# the Free Software Foundation, either version 3 of the License, or
33+
# (at your option) any later version.
34+
#
35+
# This program is distributed in the hope that it will be useful,
36+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
37+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
38+
# GNU General Public License for more details.
39+
#
40+
# You should have received a copy of the GNU General Public License
41+
# along with this program. If not, see <https://www.gnu.org/licenses/>.
2942

3043
from conan import ConanFile
3144
from conan.tools.build import check_min_cppstd
@@ -34,7 +47,7 @@
3447

3548
class cppiniRecipe(ConanFile):
3649
name = "cppini"
37-
version = "0.2.0"
50+
version = "0.2.1"
3851
package_type = "library"
3952

4053
# Optional metadata

0 commit comments

Comments
 (0)