diff --git a/CHANGELOG.md b/CHANGELOG.md index c975e1d3..7d53dc08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,9 +23,20 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`): ## [Unreleased] +## [0.2.0] - 2022-01-06 + +* New features: + * added new 4-bit integer types: `ml_dtypes.int4` and `ml_dtypes.uint4` + +* Deprecations: + * `ml_dtypes.float8_e4m3b11` has been renamed to `ml_dtypes.float8_e4m3b11fnuz` for more + consistency with other dtype names. The former name will still be available until + version 0.3.0, but will raise a deprecation warning. + ## [0.1.0] - 2022-11-01 * Initial release -[Unreleased]: https://github.com/jax-ml/ml_dtypes/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/jax-ml/ml_dtypes/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/jax-ml/ml_dtypes/compare/v0.1.0...v0.2.0 [0.1.0]: https://github.com/jax-ml/ml_dtypes/releases/tag/v0.1.0 diff --git a/ml_dtypes/__init__.py b/ml_dtypes/__init__.py index a472ed14..f22cfb12 100644 --- a/ml_dtypes/__init__.py +++ b/ml_dtypes/__init__.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.1.0' # Keep in sync with pyproject.toml:version +__version__ = '0.2.0' # Keep in sync with pyproject.toml:version __all__ = [ '__version__', 'bfloat16', diff --git a/pyproject.toml b/pyproject.toml index 313ab91d..de167d9e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ml_dtypes" -version = "0.1.0" # Keep in sync with ml_dtypes/__init__.py:__version__ +version = "0.2.0" # Keep in sync with ml_dtypes/__init__.py:__version__ description = "" readme = "README.md" requires-python = ">=3.7"