Skip to content

Commit 579679a

Browse files
authored
Release version 6.5.1 (#662)
1 parent e45956f commit 579679a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ cmake_minimum_required(VERSION 3.9)
1919
# Setup the XTB Project
2020
project(
2121
"xtb"
22-
VERSION "6.5.0"
22+
VERSION "6.5.1"
2323
LANGUAGES "C" "Fortran"
2424
)
2525
enable_testing()

meson.build

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
project(
2020
'xtb',
2121
'fortran', 'c',
22-
version: '6.5.0',
22+
version: '6.5.1',
2323
license: 'LGPL3-3.0-or-later',
2424
meson_version: '>=0.55',
2525
default_options: [
@@ -57,9 +57,9 @@ config = configuration_data({
5757
'description': 'Semiempirical Extended Tight-Binding Program Package',
5858
'version': meson.project_version(),
5959
'commit': commit,
60-
'date': run_command(python, '-c', 'import datetime; datetime.today().strftime("%Y-%m-%d")').stdout().strip(),
61-
'author': run_command(python, '-c', 'import getpass; getpass.getuser()').stdout().strip(),
62-
'origin': run_command(python, '-c', 'import socket; socket.gethostname()').stdout().strip(),
60+
'date': run_command(python, '-c', 'import datetime; print(datetime.date.today().strftime("%Y-%m-%d"))').stdout().strip(),
61+
'author': run_command(python, '-c', 'import getpass; print(getpass.getuser())').stdout().strip(),
62+
'origin': run_command(python, '-c', 'import socket; print(socket.gethostname())').stdout().strip(),
6363
'prefix': get_option('prefix'),
6464
'mandir': get_option('mandir'),
6565
'bindir': get_option('bindir'),

0 commit comments

Comments
 (0)