Skip to content

Commit

Permalink
Add __version__ to __init__ (#123)
Browse files Browse the repository at this point in the history
* Add __version__ to __init__

* Update setup.py

* Update CHANGELOG.md
  • Loading branch information
j6k4m8 authored Jun 9, 2021
1 parent fa7a3bd commit a6f63a4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
- **2.0.1**
- Add `__version__` to module to sync with setup.py.
- **2.0.0**
- Allow for a custom background color. Default is none (transparent).
- Use a Lambert shader as the default for new meshes (#115)
Expand Down Expand Up @@ -31,4 +33,4 @@
- **0.1.0** (October 31, 2017)
- `pytri#fibers`
- **0.0.1** (October 26, 2017)
- Initial push to PyPI
- Initial push to PyPI
1 change: 1 addition & 0 deletions pytri/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
_DEFAULT_FIGURE_WIDTH = 600
_DEFAULT_FIGURE_HEIGHT = 400

__version__ = "2.0.1"

class Figure:
"""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name="pytri",
version="2.0.0",
version="2.0.1",
description="Pytri, redux",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit a6f63a4

Please sign in to comment.