Skip to content

Commit

Permalink
Release version 6.5.1 (#662)
Browse files Browse the repository at this point in the history
  • Loading branch information
awvwgk authored Jul 11, 2022
1 parent e45956f commit 579679a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
8 changes: 4 additions & 4 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down Expand Up @@ -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'),
Expand Down

0 comments on commit 579679a

Please sign in to comment.