From 8a2067d995e33148def1efc7d4275f6f19b68ef7 Mon Sep 17 00:00:00 2001 From: Anthony Scemama Date: Tue, 24 Oct 2023 19:53:07 +0200 Subject: [PATCH] Bump version to 2.4.2 --- ChangeLog | 1 + configure.ac | 2 +- ocaml/trexio/dune-project | 2 +- rust/trexio/Cargo.toml | 2 +- rust/trexio/build.rs | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index efc363c..abbe095 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/configure.ac b/configure.ac index d22c0f2..ecd13ae 100644 --- a/configure.ac +++ b/configure.ac @@ -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]) diff --git a/ocaml/trexio/dune-project b/ocaml/trexio/dune-project index f37f9f6..5d32174 100644 --- a/ocaml/trexio/dune-project +++ b/ocaml/trexio/dune-project @@ -1,7 +1,7 @@ (lang dune 3.1) (name trexio) -(version 2.3.2) +(version 2.4.2) (generate_opam_files false) diff --git a/rust/trexio/Cargo.toml b/rust/trexio/Cargo.toml index a83c682..5ca5289 100644 --- a/rust/trexio/Cargo.toml +++ b/rust/trexio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trexio" -version = "2.4.1" +version = "2.4.2" edition = "2021" license = "BSD-3-Clause" authors = ["Anthony Scemama ", "Evgeny Posenitskiy"] diff --git a/rust/trexio/build.rs b/rust/trexio/build.rs index 146e61c..05b6ad8 100644 --- a/rust/trexio/build.rs +++ b/rust/trexio/build.rs @@ -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";