From 579679afd673b20e6dc6e238ecc19db70941731f Mon Sep 17 00:00:00 2001 From: Sebastian Ehlert <28669218+awvwgk@users.noreply.github.com> Date: Mon, 11 Jul 2022 09:32:00 +0200 Subject: [PATCH] Release version 6.5.1 (#662) --- CMakeLists.txt | 2 +- meson.build | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index deff53d83..72a18e943 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ cmake_minimum_required(VERSION 3.9) # Setup the XTB Project project( "xtb" - VERSION "6.5.0" + VERSION "6.5.1" LANGUAGES "C" "Fortran" ) enable_testing() diff --git a/meson.build b/meson.build index 5e61151ea..d6e643273 100644 --- a/meson.build +++ b/meson.build @@ -19,7 +19,7 @@ project( 'xtb', 'fortran', 'c', - version: '6.5.0', + version: '6.5.1', license: 'LGPL3-3.0-or-later', meson_version: '>=0.55', default_options: [ @@ -57,9 +57,9 @@ config = configuration_data({ 'description': 'Semiempirical Extended Tight-Binding Program Package', 'version': meson.project_version(), 'commit': commit, - 'date': run_command(python, '-c', 'import datetime; datetime.today().strftime("%Y-%m-%d")').stdout().strip(), - 'author': run_command(python, '-c', 'import getpass; getpass.getuser()').stdout().strip(), - 'origin': run_command(python, '-c', 'import socket; socket.gethostname()').stdout().strip(), + 'date': run_command(python, '-c', 'import datetime; print(datetime.date.today().strftime("%Y-%m-%d"))').stdout().strip(), + 'author': run_command(python, '-c', 'import getpass; print(getpass.getuser())').stdout().strip(), + 'origin': run_command(python, '-c', 'import socket; print(socket.gethostname())').stdout().strip(), 'prefix': get_option('prefix'), 'mandir': get_option('mandir'), 'bindir': get_option('bindir'),