Skip to content

Commit 01b73de

Browse files
authored
Merge pull request #437 from Ghabry/release/0.7.0
Release 0.7.0
2 parents c21cfec + f055843 commit 01b73de

4 files changed

Lines changed: 14 additions & 9 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ if(${CMAKE_VERSION} VERSION_LESS 3.12)
44
cmake_policy(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION})
55
endif()
66

7-
project(liblcf VERSION 0.6.2 LANGUAGES CXX)
7+
project(liblcf VERSION 0.7.0 LANGUAGES CXX)
88

99
# Compilation options
1010
option(BUILD_SHARED_LIBS "Build shared library, disable for building the static library (default: ON)" ON)

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ Building requirements:
4141

4242
Step-by-step instructions:
4343

44-
tar xf liblcf-0.6.2.tar.xz # unpack the tarball
45-
cd liblcf-0.6.2 # enter in the package directory
44+
tar xf liblcf-0.7.0.tar.xz # unpack the tarball
45+
cd liblcf-0.7.0 # enter in the package directory
4646
./configure --prefix /usr # find libraries, set options
4747
make # compile the library
4848
sudo make install # install system-wide
@@ -71,8 +71,8 @@ Building requirements:
7171

7272
Step-by-step instructions:
7373

74-
tar xf liblcf-0.6.2.tar.xz # unpack the tarball
75-
cd liblcf-0.6.2 # enter in the package directory
74+
tar xf liblcf-0.7.0.tar.xz # unpack the tarball
75+
cd liblcf-0.7.0 # enter in the package directory
7676
cmake . -DCMAKE_BUILD_TYPE=Release # configure project
7777
cmake --build . # compile the library
7878
sudo cmake --build . --target install # install system-wide
@@ -109,8 +109,11 @@ See the file [COPYING] for copying conditions.
109109

110110
### 3rd party software
111111

112-
liblcf code includes a copy of [inih] under New BSD license.
113-
liblcf code includes a copy of [string-view-lite] and [span-lite] under Boost Software License, Version 1.0.
112+
liblcf includes code of the following 3rd party software:
113+
114+
- [inih] under New BSD license.
115+
- [string-view-lite] and [span-lite] under Boost Software License, Version 1.0.
116+
114117
See the source code comment headers for license details.
115118

116119

builds/release-helper.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
# release-helper.sh - maintainer utility script to change
44
# the library version and update all copyright dates
5-
# by carstene1ns 2020, released under the MIT license
5+
# by carstene1ns 2021, released under the MIT license
6+
7+
set -e
68

79
year=$(date +%Y)
810
version=$1

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.69])
5-
AC_INIT([liblcf],[0.6.2],[https://github.com/EasyRPG/liblcf/issues],[liblcf],[https://easyrpg.org/])
5+
AC_INIT([liblcf],[0.7.0],[https://github.com/EasyRPG/liblcf/issues],[liblcf],[https://easyrpg.org/])
66

77
AC_CONFIG_AUX_DIR([builds/autoconf])
88
AM_INIT_AUTOMAKE([1.11.4 foreign subdir-objects -Wall dist-xz])

0 commit comments

Comments
 (0)