Skip to content

Commit 8f4cdd8

Browse files
committed
prepare for 1.4.0
1 parent ab2f2b2 commit 8f4cdd8

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

doc/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@ def load_res():
141141
# built documents.
142142
#
143143
# The short X.Y version.
144-
version = '1.3.5'
144+
version = '1.4.0'
145145
# The full version, including alpha/beta/rc tags.
146-
release = '1.3.5'
146+
release = '1.4.0'
147147

148148
# The language for content autogenerated by Sphinx. Refer to documentation
149149
# for a list of supported languages.

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,8 @@
157157
Python 2 and 3
158158
--------------
159159
160-
The code can run in both Python branches without any modification.
160+
The code should run in both Python branches without any modification, although
161+
compatibility with Python 2 is not checked any longer.
161162
162163
Get xrt
163164
-------
@@ -179,7 +180,7 @@
179180

180181
setup(
181182
name='xrt',
182-
version='1.3.5',
183+
version='1.4.0',
183184
description='Ray tracing and wave propagation in x-ray regime, primarily '
184185
'meant for modeling synchrotron sources, beamlines and '
185186
'beamline elements. Includes a GUI for creating a beamline '

xrt/__init__.py

+7-5
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@
146146
Python 2 and 3
147147
--------------
148148
149-
The code can run in both Python branches without any modification.
149+
The code should run in both Python branches without any modification, although
150+
compatibility with Python 2 is not checked any longer.
150151
151152
Dependencies
152153
------------
@@ -211,10 +212,11 @@
211212
initiated the custom field undulator project and supplied tables of magnetic
212213
field. Bernard Kozioziemski (LLNL) has pointed to the importance of considering
213214
the *total* absorption cross-section (not just photoelectric absorption) in the
214-
cases of light materials at high energy. Emilio Heredia (CLS) is thanked for
215-
valuable suggestions on GUI. Tim May (CLS) is acknowledged for inspiring the
216-
custom magnetic field calculation development, providing field tables and
217-
comparing the results with other codes.
215+
cases of light materials at high energy. He also did deep tests of the mosaic
216+
crystal model. Emilio Heredia (CLS) is thanked for valuable suggestions on GUI.
217+
Tim May (CLS) is acknowledged for inspiring the custom magnetic field
218+
calculation development, providing field tables and comparing the results with
219+
other codes.
218220
219221
"""
220222

xrt/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
__versioninfo__ = (1, 3, 5)
2+
__versioninfo__ = (1, 4, 0)
33
__version__ = '.'.join(map(str, __versioninfo__))
4-
__date__ = "19 Nov 2020"
4+
__date__ = "22 Sep 2021"

0 commit comments

Comments
 (0)