From c2db004b7bff15d878ca73fc05063f5331fd1995 Mon Sep 17 00:00:00 2001 From: Sebastian Ehlert <28669218+awvwgk@users.noreply.github.com> Date: Mon, 4 Oct 2021 18:53:44 +0200 Subject: [PATCH] Bump stdlib version to 0.1.0 (#538) - update changelog, add changelog to pages --- CHANGELOG.md | 19 ++++++++++++++----- CMakeLists.txt | 2 +- ci/fpm.toml | 2 +- doc/changelog.md | 5 +++++ 4 files changed, 21 insertions(+), 7 deletions(-) create mode 100644 doc/changelog.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 73d6495a1..e6aa883ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Unreleased + +# Version 0.1.0 + +Full release notes available at [v0.1.0] tag. + +[v0.1.0]: https://github.com/fortran-lang/stdlib/releases/tag/v0.1.0 + - new module `stdlib_ascii` [#32](https://github.com/fortran-lang/stdlib/pull/32) - new module `stdlib_bitsets` @@ -20,19 +27,21 @@ - new module `stdlib_linalg` - new procedures `diag`, `eye` and `trace` [#170](https://github.com/fortran-lang/stdlib/pull/170) - - new procedures `linspace` and `logspace` - [#420](https://github.com/fortran-lang/stdlib/pull/420) - new procedure `outer_product` [#432](https://github.com/fortran-lang/stdlib/pull/432) - - new procedure `arange` - [#480](https://github.com/fortran-lang/stdlib/pull/480) - new module `stdlib_logger` - - new derived type: `logger_type` + - new derived type `logger_type` [#228](https://github.com/fortran-lang/stdlib/pull/228) [#261](https://github.com/fortran-lang/stdlib/pull/261) - new module `stdlib_math` - new procedure `clip` [#355](https://github.com/fortran-lang/stdlib/pull/355) + - new procedures `linspace` and `logspace` + [#420](https://github.com/fortran-lang/stdlib/pull/420) + - new procedure `arange` + [#480](https://github.com/fortran-lang/stdlib/pull/480) + - new procedure `gcd` + [#539](https://github.com/fortran-lang/stdlib/pull/539) - new module `stdlib_optval` [#73](https://github.com/fortran-lang/stdlib/pull/73) [#96](https://github.com/fortran-lang/stdlib/pull/96) diff --git a/CMakeLists.txt b/CMakeLists.txt index 72cf3a979..93731f8b3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.14.0) project(fortran_stdlib LANGUAGES Fortran - VERSION 0 + VERSION 0.1.0 DESCRIPTION "Community driven and agreed upon de facto standard library for Fortran" ) enable_testing() diff --git a/ci/fpm.toml b/ci/fpm.toml index 955d6924b..dd188f343 100644 --- a/ci/fpm.toml +++ b/ci/fpm.toml @@ -1,5 +1,5 @@ name = "stdlib" -version = "0.0.0" +version = "0.1.0" license = "MIT" author = "stdlib contributors" maintainer = "@fortran-lang/stdlib" diff --git a/doc/changelog.md b/doc/changelog.md new file mode 100644 index 000000000..f250b9ebc --- /dev/null +++ b/doc/changelog.md @@ -0,0 +1,5 @@ +--- +title: Changelog +--- + +{!CHANGELOG.md!}