diff --git a/fixedpoint/__init__.py b/fixedpoint/__init__.py index 2be0815..19166fb 100644 --- a/fixedpoint/__init__.py +++ b/fixedpoint/__init__.py @@ -36,7 +36,7 @@ ] __maintainer__ = "Zack Sheffield" __email__ = "zack_sheffield@selinc.com" -__version__ = "1.0.0-b1" +__version__ = "1.0.0" from fixedpoint.fixedpoint import * # noqa # ignore unused imports from fixedpoint.functions import * # noqa # ignore unused imports diff --git a/fixedpoint/fixedpoint.py b/fixedpoint/fixedpoint.py index d83a8ce..6f30c20 100644 --- a/fixedpoint/fixedpoint.py +++ b/fixedpoint/fixedpoint.py @@ -30,6 +30,7 @@ def _sn(__id: Mapping[str, object]) -> int: class FixedPointBits(int): """Allow for slicing and mapping into FixedPoint.bits.""" + s: bool m: int n: int diff --git a/setup.cfg b/setup.cfg index f5ef87f..eb45fa3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,7 +11,7 @@ author_email = zack_sheffield@selinc.com maintainer = Zack Sheffield maintainer_email = zack_sheffield@selinc.com classifiers = - Development Status :: 4 - Beta + Development Status :: 5 - Production/Stable License :: OSI Approved :: BSD License Natural Language :: English Intended Audience :: Developers diff --git a/setup.py b/setup.py index 8ed4029..da4a279 100644 --- a/setup.py +++ b/setup.py @@ -86,7 +86,7 @@ def get_version() -> str: if __name__ == '__main__': # https://setuptools.readthedocs.io/en/latest/setuptools.html#specifying-values - # The file: directive is sandboxed and won’t reach anything outside the + # The file: directive is sandboxed and won't reach anything outside the # directory containing setup.py. Since long_description.rst is not in the # same directory, it is specified here instead of in setup.cfg. setuptools.setup(long_description=long_description(),