diff --git a/build_scripts/gnu_no_omp.sh b/build_scripts/gnu_no_omp.sh index e964c09..3977579 100755 --- a/build_scripts/gnu_no_omp.sh +++ b/build_scripts/gnu_no_omp.sh @@ -1,8 +1,6 @@ #!/bin/bash unset LDFLAGS -unset FFLAGS -unset CFLAGS cd ../fortran $FC -E ompgen.F90 -cpp -o omp.f90 diff --git a/build_scripts/gnu_omp.sh b/build_scripts/gnu_omp.sh index ae9c2f4..03faa1b 100755 --- a/build_scripts/gnu_omp.sh +++ b/build_scripts/gnu_omp.sh @@ -1,8 +1,6 @@ #!/bin/bash unset LDFLAGS -unset FFLAGS -unset CFLAGS cd ../fortran/build_help $FC -o sizes -fopenmp omp_sizes.f90 diff --git a/doc/source/new.rst b/doc/source/new.rst index b79d612..6e8719d 100644 --- a/doc/source/new.rst +++ b/doc/source/new.rst @@ -4,6 +4,18 @@ What's New Releases ------------- +v1.3.2 (February 2019) +^^^^^^^^^^^^^^^^^^^^^^^^^ + +- Release 1.3.2 +- Coordinate name index positions are no longer assumed and are searched + instead. Some users use xarray to rewrite WRF output files, and xarray + might reorder the coordinate name positions. +- Fixed a segfault issue with CAPE when more than 150 vertical levels are + used (e.g. LES runs). +- setup.py will now bootstrap the numpy installation (thanks bbonenfant!). + + v1.3.1 (January 2019) ^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/src/wrf/version.py b/src/wrf/version.py index 9c73af2..f708a9b 100644 --- a/src/wrf/version.py +++ b/src/wrf/version.py @@ -1 +1 @@ -__version__ = "1.3.1" +__version__ = "1.3.2"