CARVIEW |
Navigation Menu
-
Notifications
You must be signed in to change notification settings - Fork 51
Releases: wavebitscientific/datetime-fortran
datetime-fortran-1.7.0
Compare
This release:
- Changes package layout to single-file, single-module library for easy reuse without build systems
- Enables building with FPM
- Initializes
tm_struct
to zero before callingstrptime
. Fixed #49 . Thanks @nichannah.
Assets 3
datetime-fortran-1.6.2
Compare
This is a bug fix release.
- Bug fix in
num2date
by @penguian - Enable Windows builds by @scivision
- Modernized CMakeLists by @scivision
Assets 3
datetime-fortran-1.6.1
Compare
Assets 3
datetime-fortran-1.6.0
Compare
Minor release. Includes ISO 8601 additions (isoweekday*
) by @tcanich. Thank you.
Assets 3
datetime-fortran-1.5.0
Compare
Minor update release.
Includes contribution of isoweekday
method and related tests by @tcanich.
Assets 3
datetime-fortran-1.4.3
Compare
Bug fix release:
- Fix use statements in
datetime.f90
to avoid unexpected behavior with Intel Fortran; - Change default flags for gfortran;
- make
timedelta_plus_datetime
a generic and not module procedure.
Assets 3
More robust checks on Linux and OS X
Compare
make check
now runs the all the unit tests on OS X and on Linux. Further, datetime_tests
indicates test failure(s) with a non-zero exit status when compiled with gfortran, ifort (and probably all other compilers).
In addition, some errant build artifacts were removed from the source distribution.
Assets 4
datetime-fortran-1.4.1
Compare
Minor bug fix for datetime assignment and attached tarball as a release asset contains configure script.
Assets 3
datetime-fortran-1.4.0
Compare
This release includes the build and install system using GNU Autotools, contributed by Mark Carter (@blippy). The code itself is unchanged from 1.3.0.
To install, type:
$ autoreconf -i
$ ./configure && make && make install
For more options on configuring such as install directory, type:
$ ./configure --help
Assets 2
datetime-fortran-1.3.0
Compare
This release has the code re-structured into multiple source files, and moved to src/lib
and src/tests
directories. Includes a top-level Makefile. Type make
to compile.