Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
scottprahl committed May 18, 2023
1 parent 848a5e8 commit 83d676d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 14 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

v2.3.2
-------------------
* fix typo in README.rst that prevented pypi upload
* add CITATION.cff to base level of miepython repository

v2.3.1
-------------------
* add DOI for citation purposes
Expand Down
16 changes: 4 additions & 12 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# This CITATION.cff file was generated with cffinit.
# Visit https://bit.ly/cffinit to generate yours today!

cff-version: 1.2.0
title: miepython
message: >-
Expand All @@ -17,22 +14,17 @@ authors:
identifiers:
- type: doi
value: 10.5281/zenodo.7949264
repository-code: 'https://github.com/scottprahl/miepython'
repository-code: 'https://github.com/scottprahl/miepython.git'
url: 'https://github.com/scottprahl/miepython'
repository: 'https://miepython.readthedocs.io/en/latest/'
abstract: >-
miepython is a pure Python module to calculate light
scattering by non-absorbing, partially-absorbing, or
perfectly conducting spheres. Mie theory is used,
following the procedure described by Wiscombe. This code
has been validated against his results.
perfectly conducting spheres. Mie theory is
validated against published results by Wiscombe.
This code provides functions for calculating the
extinction efficiency, scattering efficiency,
backscattering, and scattering asymmetry. Moreover, a set
of angles can be given to calculate the scattering at
various angles for a sphere.
backscattering, and scattering asymmetry.
keywords:
- mie
- scattering
Expand Down
4 changes: 2 additions & 2 deletions miepython/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
miepython.i_par(m, x, mu, norm='one')
miepython.i_unpolarized(m, x, mu, norm='one')
"""
__version__ = '2.3.1'
__version__ = '2.3.2'
__author__ = 'Scott Prahl'
__email__ = '[email protected]'
__copyright__ = 'Copyright 2017-22, Scott Prahl'
__copyright__ = 'Copyright 2017-23, Scott Prahl'
__license__ = 'MIT'
__url__ = 'https://github.com/scottprahl/miepython.git'

Expand Down

0 comments on commit 83d676d

Please sign in to comment.