Skip to content

Commit 2850771

Browse files
authored
Merge pull request #282 from kdere/master
bumped verion to v0.9.5
2 parents 2b817bf + fd02485 commit 2850771

File tree

6 files changed

+25
-7
lines changed

6 files changed

+25
-7
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ htmlcov
1616
MANIFEST
1717

1818
# Sphinx
19-
docs/source/api
19+
# kpd commented out the api stuff
20+
#docs/source/api
2021
docs/_build
2122

2223
# Eclipse editor project files

ChiantiPy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'''
22
the current version of the ChiantiPy package
33
'''
4-
__version_info__ = ('0','9', '4')
4+
__version_info__ = ('0','9', '5')
55
__version__ = '.'.join(__version_info__)

docs/source/changelog.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22
Changelog
33
===========
44

5+
6+
Changes from 0.9.4 to 0.9.5
7+
===========================
8+
9+
this is a bug-fix release.
10+
11+
a bug in the inherited method base._IntensityRatio() had a problem if lines were selected from different ions
12+
13+
14+
Changes from 0.9.3 to 0.9.4
15+
===========================
16+
17+
this is a bug-fix release.
18+
19+
changes in version 0.9.2 continued to give problems with ions that included autoionization rates
20+
21+
522
Changes from 0.9.3 to 0.9.3
623
===========================
724

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@
6767
# built documents.
6868
#
6969
# The short X.Y version.
70-
version = '0.9.4'
70+
version = '0.9.5'
7171
# The full version, including alpha/beta/rc tags.
72-
release = '0.9.4'
72+
release = '0.9.5'
7373

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

docs/source/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ ChiantiPy Documentation
88

99
Welcome to the ChiantiPy documentation. ChiantiPy is a pure Python package for performing calculations of astrophysical spectra using the `CHIANTI atomic database <http://www.chiantidatabase.org/>`_.
1010

11-
The latest version of ChiantiPy is 0.9.4 and is compatible with CHIANTI database version 9.0. It is not compatible with previous versions
11+
The latest version of ChiantiPy is 0.9.5 and is compatible with CHIANTI database version 9.0. It is not compatible with previous versions
1212

13-
ChiantiPy v0.9.4 is released under the OSI approved ISC license. From `Wikipedia <https://en.wikipedia.org/w/index.php?title=ISC_license&oldid=664696993>`_: The ISC license is a permissive free software license written by the Internet Software Consortium (ISC). It is functionally equivalent to the simplified BSD and MIT/Expat licenses, ...
13+
ChiantiPy v0.9.5 is released under the OSI approved ISC license. From `Wikipedia <https://en.wikipedia.org/w/index.php?title=ISC_license&oldid=664696993>`_: The ISC license is a permissive free software license written by the Internet Software Consortium (ISC). It is functionally equivalent to the simplified BSD and MIT/Expat licenses, ...
1414

1515
`CHIANTI <http://www.chiantidatabase.org/>`_ consists of a database of atomic data that can be used to interpret spectral lines and continua emitted from high-temperature, optically-thin astrophysical sources.
1616

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
setup(name = 'ChiantiPy',
1010
description = 'a Python interface to the CHIANTI atomic database for astrophysical spectroscopy',
1111
long_description = long_description,
12-
version = '0.9.4',
12+
version = '0.9.5',
1313
author = 'Ken Dere',
1414
author_email = '[email protected]',
1515
url = 'https://github.com/chianti-atomic/ChiantiPy',

0 commit comments

Comments
 (0)