Skip to content

Commit

Permalink
Merge pull request #437 from Ghabry/release/0.7.0
Browse files Browse the repository at this point in the history
Release 0.7.0
  • Loading branch information
carstene1ns authored Oct 29, 2021
2 parents c21cfec + f055843 commit 01b73de
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if(${CMAKE_VERSION} VERSION_LESS 3.12)
cmake_policy(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION})
endif()

project(liblcf VERSION 0.6.2 LANGUAGES CXX)
project(liblcf VERSION 0.7.0 LANGUAGES CXX)

# Compilation options
option(BUILD_SHARED_LIBS "Build shared library, disable for building the static library (default: ON)" ON)
Expand Down
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ Building requirements:

Step-by-step instructions:

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

Step-by-step instructions:

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

### 3rd party software

liblcf code includes a copy of [inih] under New BSD license.
liblcf code includes a copy of [string-view-lite] and [span-lite] under Boost Software License, Version 1.0.
liblcf includes code of the following 3rd party software:

- [inih] under New BSD license.
- [string-view-lite] and [span-lite] under Boost Software License, Version 1.0.

See the source code comment headers for license details.


Expand Down
4 changes: 3 additions & 1 deletion builds/release-helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

# release-helper.sh - maintainer utility script to change
# the library version and update all copyright dates
# by carstene1ns 2020, released under the MIT license
# by carstene1ns 2021, released under the MIT license

set -e

year=$(date +%Y)
version=$1
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

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

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

0 comments on commit 01b73de

Please sign in to comment.