Skip to content

Commit

Permalink
Prepare 0.7.0 (version bump + release notes + doc)
Browse files Browse the repository at this point in the history
  • Loading branch information
paugier committed Jun 6, 2024
1 parent d201534 commit e0b6233
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
See also the
[unreleased changes](https://foss.heptapod.net/fluiddyn/transonic/-/compare/0.6.4...branch%2Fdefault).

## [0.7.0] (2024-06-06)

- Add a backend for [JAX](https://github.com/google/jax) ({mod}`transonic.backends.jax`).

## [0.6.4] (2024-03-29)

- The `__transonic__` attribute is now a `str` (should avoid
Expand Down Expand Up @@ -270,3 +274,4 @@ See also the
[0.6.2]: https://foss.heptapod.net/fluiddyn/transonic/-/compare/0.6.1...0.6.2
[0.6.3]: https://foss.heptapod.net/fluiddyn/transonic/-/compare/0.6.2...0.6.3
[0.6.4]: https://foss.heptapod.net/fluiddyn/transonic/-/compare/0.6.3...0.6.4
[0.7.0]: https://foss.heptapod.net/fluiddyn/transonic/-/compare/0.6.4...0.7.0
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "pdm.backend"

[project]
name = "transonic"
version = "0.6.4"
version = "0.7.0"
description = "Make your Python code fly at transonic speeds!"
authors = [
{ name = "Pierre Augier", email = "pierre.augier@univ-grenoble-alpes.fr" },
Expand Down
1 change: 1 addition & 0 deletions src/transonic/backends/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
cython
numba
py
jax
User API
--------
Expand Down
6 changes: 5 additions & 1 deletion src/transonic/backends/jax.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,11 @@ def make_backend_source(self, info_analysis, func, path_backend):


class JaxBackend(PythonBackend):
"""Main class for the Jax backend"""
"""Main class for the Jax backend
See https://github.com/google/jax
"""

backend_name = "jax"
_SubBackendJIT = SubBackendJITJax
Expand Down

0 comments on commit e0b6233

Please sign in to comment.