Bump version to 2.4.2

This commit is contained in:
Anthony Scemama 2023-10-24 19:53:07 +02:00
parent 92e71be956
commit 8a2067d995
5 changed files with 5 additions and 4 deletions

View File

@ -7,6 +7,7 @@ CHANGES
- Added state/energy
- Made state/id an index instead of an int
- Added JSON configuration data as a C variable in trexio.h
- Added JSON configuration file in tar.gz release
- Added Rust interface
2.3

View File

@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([trexio],[2.4.1],[https://github.com/TREX-CoE/trexio/issues])
AC_INIT([trexio],[2.4.2],[https://github.com/TREX-CoE/trexio/issues])
AC_CONFIG_SRCDIR([Makefile.in])
AC_CONFIG_HEADERS([include/config.h])

View File

@ -1,7 +1,7 @@
(lang dune 3.1)
(name trexio)
(version 2.3.2)
(version 2.4.2)
(generate_opam_files false)

View File

@ -1,6 +1,6 @@
[package]
name = "trexio"
version = "2.4.1"
version = "2.4.2"
edition = "2021"
license = "BSD-3-Clause"
authors = ["Anthony Scemama <scemama@irsamc.ups-tlse.fr>", "Evgeny Posenitskiy"]

View File

@ -2,7 +2,7 @@ extern crate reqwest;
extern crate tar;
extern crate flate2;
const VERSION: &str = "2.3.2";
const VERSION: &str = "2.4.2";
const WRAPPER_H: &str = "wrapper.h";
const GENERATED_RS: &str = "generated.rs";