Skip to content

Commit 1bd3b9f

Browse files
committed
version bump
1 parent 5191fe9 commit 1bd3b9f

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

doc/source/changelog.rst

+10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
Changelog
22
---------
33

4+
v1.0.6
5+
======
6+
7+
* added `to_dict` keyword argument to solvers.
8+
* Improved doctests
9+
* Added latex equations to ReadTheDocs documentation
10+
* Added examples to ReadTheDocs documentation
11+
* Added linkcode resolve to documentation
12+
13+
414
v1.0.5
515
======
616

pygasflow/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.5"
1+
__version__ = "1.0.6"

setup.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
11
from setuptools import setup
22
import os
33

4+
def readme():
5+
with open('README.md') as f:
6+
return f.read()
7+
48
here = os.path.dirname(os.path.abspath(__file__))
59
version_ns = {}
610
with open(os.path.join(here, 'pygasflow', '_version.py')) as f:
711
exec (f.read(), {}, version_ns)
812

9-
def readme():
10-
with open('README.md') as f:
11-
return f.read()
12-
1313
setup(
1414
name = 'pygasflow',
1515
version = version_ns["__version__"],
1616
description = 'Ideal Gasdynamics utilities for Python 3.6+',
1717
long_description = readme(),
18+
long_description_content_type="text/markdown",
1819
classifiers=[
20+
'Development Status :: 5 - Production/Stable',
1921
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
2022
'Programming Language :: Python :: 3.9',
2123
"Topic :: Scientific/Engineering",

0 commit comments

Comments
 (0)