Skip to content

Commit 34598d2

Browse files
committed
release v0.1.0
1 parent 3e21903 commit 34598d2

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

HISTORY.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
2022-03-31 -- removed old procedural functions
1+
v0.1.0, 2022-03-31 -- removed old procedural functions
22
2021-06-15 -- added 'unique' option to `tomso plot --legend`
33
2021-01-08 -- extend MESAAsteroSamples slicing to handle NumPy ints,
44
lists or arrays of bools or ints

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2016–2020 Warrick H. Ball
3+
Copyright (c) 2016–2022 Warrick H. Ball
44

55
Permission is hereby granted, free of charge, to any person obtaining
66
a copy of this software and associated documentation files (the

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,17 @@
5454

5555
# General information about the project.
5656
project = 'TOMSO'
57-
copyright = '2020, Warrick Ball'
57+
copyright = '2022, Warrick Ball'
5858
author = 'Warrick Ball'
5959

6060
# The version info for the project you're documenting, acts as replacement for
6161
# |version| and |release|, also used in various other places throughout the
6262
# built documents.
6363
#
6464
# The short X.Y version.
65-
version = '0.0.13'
65+
version = '0.1.0'
6666
# The full version, including alpha/beta/rc tags.
67-
release = '0.0.13'
67+
release = '0.1.0'
6868

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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
setup(
44
name = 'tomso',
55
packages = ['tomso'],
6-
version = '0.0.13',
6+
version = '0.1.0',
77
description = 'Tools for Models of Stars and their Oscillations',
88
long_description=open('README.md').read(),
99
long_description_content_type='text/markdown',
1010
author = 'Warrick Ball',
1111
author_email = 'W.H.Ball@bham.ac.uk',
1212
url = 'https://github.com/warrickball/tomso',
13-
download_url = 'https://github.com/warrickball/tomso/archive/v0.0.13.tar.gz',
13+
download_url = 'https://github.com/warrickball/tomso/archive/v0.1.0.tar.gz',
1414
install_requires=['numpy'],
1515
keywords = [],
1616
scripts = ['scripts/tomso-convert',

tomso/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.0.13"
1+
__version__ = "0.1.0"
22

33
__all__ = [
44
'adipls',

0 commit comments

Comments
 (0)