Skip to content

Commit c0d2664

Browse files
authored
Merge pull request #28 from astropenguin/#27-release-v0.2.2
Release v0.2.2
2 parents 9127f65 + d3a9c0e commit c0d2664

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

ndradex/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
__version__ = "0.2.1"
2-
__author__ = "astropenguin"
1+
__version__ = "0.2.2"
2+
__author__ = "Akio Taniguchi"
33

44

55
# ignore FutureWarning

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ndradex"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
description = "Python package for RADEX grid calculation"
55
authors = ["Akio Taniguchi <taniguchi@a.phys.nagoya-u.ac.jp>"]
66
license = "MIT"

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = ndradex
3-
version = 0.2.1
3+
version = 0.2.2
44
author = astropenguin
55
author_email = taniguchi@a.phys.nagoya-u.ac.jp
66
url = https://github.com/astropenguin/ndradex

tests/test_metadata.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# dependencies
2+
import ndradex
3+
4+
5+
# test functions
6+
def test_version():
7+
"""Make sure the version is valid."""
8+
assert ndradex.__version__ == "0.2.2"
9+
10+
11+
def test_author():
12+
"""Make sure the author is valid."""
13+
assert ndradex.__author__ == "Akio Taniguchi"

0 commit comments

Comments
 (0)