Julia v1.6.2 has been released

Julia version 1.6.2, the second patch release in the 1.6 series of releases, is now available. You can get binaries for glibc Linux (i686, x86-64, AArch64, ARMv7), musl Linux (x86-64), FreeBSD (x86-64), macOS (x86-64), and Windows (32-, 64-bit) at https://julialang.org/downloads.

As a patch release, 1.6.2 contains no new features or breaking changes, only bug fixes, documentation improvements, and performance improvements. You can see the list of commits included since 1.6.1 here. We recommend anyone currently using 1.6.0 or 1.6.1 upgrade to 1.6.2.

Note that 1.6 on Travis, AppVeyor, Cirrus, and (soon) GitHub Actions now refers to 1.6.2.

Enjoy!

51 Likes

info: new :julia: docker :whale: images ready to use:

Tags:

  • docker pull julia:1.6.2-buster
    • (linux/386,linux/amd64,linux/arm/v7,linux/arm64/v8,linux/ppc64le)
  • docker pull julia:1.6.2
    • ( … )
  • docker pull julia:1.6.2-windowsservercore-ltsc2016
    • (windows/amd64)
  • docker pull julia:1.6.2-windowsservercore-1809
    • (windows/amd64)
  • docker pull julia:1.6.2-alpine3.14
    • (linux/amd64)
  • docker pull julia:1.6.2-alpine3.13
    • (linux/amd64)
  • docker pull julia:1.6.2-alpine
    • (linux/amd64)

Example:

$ docker pull julia:1.6.2
1.6.2: Pulling from library/julia
b4d181a07f80: Already exists 
dc23e735726b: Already exists 
7b4618fc78ca: Pull complete 
Digest: sha256:2c3cbe4911f903bd65c25f4bff12aab89c8a7975087c7fa7f3ff204caffbd4bd
Status: Downloaded newer image for julia:1.6.2
docker.io/library/julia:1.6.2

$ docker run -it --rm julia:1.6.2
               _
   _       _ _(_)_     |  Documentation: https://docs.julialang.org
  (_)     | (_) (_)    |
   _ _   _| |_  __ _   |  Type "?" for help, "]?" for Pkg help.
  | | | | | | |/ _` |  |
  | | |_| | | | (_| |  |  Version 1.6.2 (2021-07-14)
 _/ |\__'_|_|_|\__'_|  |  Official https://julialang.org/ release
|__/                   |

julia> 
4 Likes