Skip to content

Commit

Permalink
Version 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dhadka committed Jan 15, 2024
1 parent 3113756 commit 338969a
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,8 @@ Rhodium.egg-info/
examples/Languages/C/src/boost_1_56_0/
examples/Basic/*_results.csv
.DS_Store
libtest.so
test.dll
test.o
rhodium.cache

13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,19 @@ plt.show()
Check out the [examples](https://github.com/Project-Platypus/Rhodium/tree/master/examples) folder
to see Rhodium in action!

## Publishing

To publish a new version to PyPI, use:

```bash
python3 -m build
python3 -m pip install --upgrade twine

# The following command publishes the build. Add `--repository testpypi` for testnig.
# Use `__token__` for the username and the PyPI token to authenticate.
python3 -m twine upload dist/*
```

## References

1. Rhodium logo by Tyler Glaude, Creative Commons License, https://thenounproject.com/term/knight/30912/
Expand Down
2 changes: 1 addition & 1 deletion rhodium/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
__author__ = "David Hadka"
__copyright__ = "Copyright 2015, David Hadka"
__license__ = "GPLv3"
__version__ = "1.2.0"
__version__ = "1.3.0"
__maintainer__ = "David Hadka"
__email__ = "[email protected]"
__status__ = "Development"
Expand Down

0 comments on commit 338969a

Please sign in to comment.