Update values after release

PiperOrigin-RevId: 427910510
This commit is contained in:
Yash Katariya 2022-02-10 20:32:20 -08:00 committed by jax authors
parent 5691010d2f
commit 2162868ed9
4 changed files with 13 additions and 4 deletions

View File

@ -8,9 +8,18 @@ Remember to align the itemized text with the first line of an item within a list
PLEASE REMEMBER TO CHANGE THE '..main' WITH AN ACTUAL TAG in GITHUB LINK.
-->
## jax 0.3.1 (Unreleased)
* [GitHub
commits](https://github.com/google/jax/compare/jax-v0.3.0...main).
## jaxlib 0.3.1 (Unreleased)
* Changes
## jax 0.3.0 (Feb 10, 2022)
* [GitHub
commits](https://github.com/google/jax/compare/jax-v0.2.28...main).
commits](https://github.com/google/jax/compare/jax-v0.2.28...jax-v0.3.0).
* Changes
* jax version has been bumped to 0.3.0. Please see the [design doc](https://jax.readthedocs.io/en/latest/design_notes/jax_versioning.html)

View File

@ -12,6 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
__version__ = "0.3.0"
__version__ = "0.3.1"
_minimum_jaxlib_version = "0.1.74"

View File

@ -17,4 +17,4 @@
# reflect the most recent available binaries.
# __version__ should be increased after releasing the current version
# (i.e. on main, this is always the next version to be released).
__version__ = "0.3.0"
__version__ = "0.3.1"

View File

@ -16,7 +16,7 @@ from setuptools import setup, find_packages
_current_jaxlib_version = '0.3.0'
# The following should be updated with each new jaxlib release.
_latest_jaxlib_version_on_pypi = '0.1.76'
_latest_jaxlib_version_on_pypi = '0.3.0'
_available_cuda_versions = ['11']
_default_cuda_version = '11'
_available_cudnn_versions = ['82', '805']