Skip to content

Commit

Permalink
prepare for 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kklmn committed Sep 22, 2021
1 parent ab2f2b2 commit 8f4cdd8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@ def load_res():
# built documents.
#
# The short X.Y version.
version = '1.3.5'
version = '1.4.0'
# The full version, including alpha/beta/rc tags.
release = '1.3.5'
release = '1.4.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@
Python 2 and 3
--------------
The code can run in both Python branches without any modification.
The code should run in both Python branches without any modification, although
compatibility with Python 2 is not checked any longer.
Get xrt
-------
Expand All @@ -179,7 +180,7 @@

setup(
name='xrt',
version='1.3.5',
version='1.4.0',
description='Ray tracing and wave propagation in x-ray regime, primarily '
'meant for modeling synchrotron sources, beamlines and '
'beamline elements. Includes a GUI for creating a beamline '
Expand Down
12 changes: 7 additions & 5 deletions xrt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@
Python 2 and 3
--------------
The code can run in both Python branches without any modification.
The code should run in both Python branches without any modification, although
compatibility with Python 2 is not checked any longer.
Dependencies
------------
Expand Down Expand Up @@ -211,10 +212,11 @@
initiated the custom field undulator project and supplied tables of magnetic
field. Bernard Kozioziemski (LLNL) has pointed to the importance of considering
the *total* absorption cross-section (not just photoelectric absorption) in the
cases of light materials at high energy. Emilio Heredia (CLS) is thanked for
valuable suggestions on GUI. Tim May (CLS) is acknowledged for inspiring the
custom magnetic field calculation development, providing field tables and
comparing the results with other codes.
cases of light materials at high energy. He also did deep tests of the mosaic
crystal model. Emilio Heredia (CLS) is thanked for valuable suggestions on GUI.
Tim May (CLS) is acknowledged for inspiring the custom magnetic field
calculation development, providing field tables and comparing the results with
other codes.
"""

Expand Down
4 changes: 2 additions & 2 deletions xrt/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
__versioninfo__ = (1, 3, 5)
__versioninfo__ = (1, 4, 0)
__version__ = '.'.join(map(str, __versioninfo__))
__date__ = "19 Nov 2020"
__date__ = "22 Sep 2021"

0 comments on commit 8f4cdd8

Please sign in to comment.