Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 4.2.0
current_version = 4.2.1
commit = True
tag = False

Expand Down
5 changes: 5 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 4.2.1 Tom Schoonjans

- Fix Python bindings compilation with recent clang and swig
- Build Python 3.10+ wheels only (drop Python 3.8 and 3.9 support). Now also add linux aarch64 wheel support

Version 4.2.0 Tom Schoonjans

- Java: update dependency from Commons Math3 to Commons Numbers Complex 1.2
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@



AC_INIT([xraylib],[4.2.0],[Tom.Schoonjans@me.com])
AC_INIT([xraylib],[4.2.1],[Tom.Schoonjans@me.com])
AC_PREREQ([2.60])
AC_CONFIG_SRCDIR([include/xraylib.h])
AC_CONFIG_AUX_DIR([build-aux])
Expand Down
2 changes: 1 addition & 1 deletion idl/libxrlidl.dlm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ MODULE XRAYLIB

DESCRIPTION IDL XRAYLIB BINDINGS

VERSION 4.2.0
VERSION 4.2.1

SOURCE A.Brunetti, M. S. del Rio, T. Schoonjans, T. Ikonen, B. Golosio, A. Simionovici, A. Somogyi

Expand Down
2 changes: 1 addition & 1 deletion include/xraylib.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ extern "C" {

#define XRAYLIB_MAJOR 4
#define XRAYLIB_MINOR 2
#define XRAYLIB_MICRO 0
#define XRAYLIB_MICRO 1


#ifndef PI
Expand Down
2 changes: 1 addition & 1 deletion java/build.gradle.in
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
id "biz.aQute.bnd.builder" version "7.0.0"
}

version = '4.2.0'
version = '4.2.1'
group = 'com.github.tschoonj'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project('xraylib',
'c',
meson_version: '>= 0.60.0',
version: '4.2.0',
version: '4.2.1',
license: 'BSD',
default_options: ['cpp_std=c++11',]
)
Expand Down
2 changes: 1 addition & 1 deletion pascal/xraylib.pas
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ interface
// From xraylib.h
const
XRAYLIB_MAJOR = 4;
XRAYLIB_MINOR = 1;
XRAYLIB_MINOR = 2;
XRAYLIB_MICRO = 1;

procedure XRayInit;cdecl;external External_library name 'XRayInit';
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ classifiers = [
dependencies = [
"numpy"
]
version = "4.2.0"
version = "4.2.1"

[project.urls]
repository = "https://github.com/tschoonj/xraylib"
Expand Down
2 changes: 1 addition & 1 deletion xraylib.spec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
%define perl_vendor_autolib %{perl_vendor_archlib}/auto

Name: xraylib
Version: 4.2.0
Version: 4.2.1
Release: 1%{?dist}
Summary: A library for X-ray matter interactions cross sections for X-ray fluorescence applications: core C library
Group: Applications/Engineering and Scientific
Expand Down
Loading