Skip to content

Commit

Permalink
release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
warrickball committed Mar 31, 2022
1 parent 3e21903 commit 34598d2
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion HISTORY.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
2022-03-31 -- removed old procedural functions
v0.1.0, 2022-03-31 -- removed old procedural functions
2021-06-15 -- added 'unique' option to `tomso plot --legend`
2021-01-08 -- extend MESAAsteroSamples slicing to handle NumPy ints,
lists or arrays of bools or ints
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2016–2020 Warrick H. Ball
Copyright (c) 2016–2022 Warrick H. Ball

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,17 @@

# General information about the project.
project = 'TOMSO'
copyright = '2020, Warrick Ball'
copyright = '2022, Warrick Ball'
author = 'Warrick Ball'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.0.13'
version = '0.1.0'
# The full version, including alpha/beta/rc tags.
release = '0.0.13'
release = '0.1.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
setup(
name = 'tomso',
packages = ['tomso'],
version = '0.0.13',
version = '0.1.0',
description = 'Tools for Models of Stars and their Oscillations',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author = 'Warrick Ball',
author_email = '[email protected]',
url = 'https://github.com/warrickball/tomso',
download_url = 'https://github.com/warrickball/tomso/archive/v0.0.13.tar.gz',
download_url = 'https://github.com/warrickball/tomso/archive/v0.1.0.tar.gz',
install_requires=['numpy'],
keywords = [],
scripts = ['scripts/tomso-convert',
Expand Down
2 changes: 1 addition & 1 deletion tomso/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.0.13"
__version__ = "0.1.0"

__all__ = [
'adipls',
Expand Down

0 comments on commit 34598d2

Please sign in to comment.