Skip to content

Commit

Permalink
Merge pull request #209 from tschoonj/release-4.1.3
Browse files Browse the repository at this point in the history
Prepare for releasing 4.1.3
  • Loading branch information
tschoonj authored Aug 25, 2022
2 parents 94e13d9 + 84e2f12 commit 5ad5a2b
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 8 deletions.
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.1.2
current_version = 4.1.3
commit = False
tag = False

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

- Fix bug in python meson build, resulting in numpy integers not being accepted by SWIG generated python bindings (reported by Christian Koernig)

Version 4.1.2 Tom Schoonjans

- Fix edge case in CS_Photo_Partial, where Kissel edge energies don't actually
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.1.2],[[email protected]])
AC_INIT([xraylib],[4.1.3],[[email protected]])
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.1.2
VERSION 4.1.3

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 1
#define XRAYLIB_MICRO 2
#define XRAYLIB_MICRO 3


#ifndef PI
Expand Down
2 changes: 1 addition & 1 deletion java/GoogleAnalyticsThread.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class GoogleAnalyticsThread extends Thread {
private static final String GOOGLE_ANALYTICS_ENDPOINT = "https://www.google-analytics.com/collect";
private static final String GOOGLE_ANALYTICS_TRACKING_ID = "UA-42595764-5";
private static final String GOOGLE_ANALYTICS_APPLICATION_NAME = "xraylib";
private static final String GOOGLE_ANALYTICS_APPLICATION_VERSION = "4.1.2";
private static final String GOOGLE_ANALYTICS_APPLICATION_VERSION = "4.1.3";
private static final String GOOGLE_ANALYTICS_HIT_TYPE = "event";

public void run() {
Expand Down
2 changes: 1 addition & 1 deletion java/build.gradle.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
id "biz.aQute.bnd.builder" version "5.3.0"
}

version = '4.1.2'
version = '4.1.3'
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.56.0',
version: '4.1.2',
version: '4.1.3',
license: 'BSD',
default_options: ['cpp_std=c++11',]
)
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.1.2
Version: 4.1.3
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

0 comments on commit 5ad5a2b

Please sign in to comment.