Skip to content

Commit c2db004

Browse files
authored
Bump stdlib version to 0.1.0 (#538)
- update changelog, add changelog to pages
1 parent ff852d2 commit c2db004

File tree

4 files changed

+21
-7
lines changed

4 files changed

+21
-7
lines changed

CHANGELOG.md

+14-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Unreleased
22

3+
4+
# Version 0.1.0
5+
6+
Full release notes available at [v0.1.0] tag.
7+
8+
[v0.1.0]: https://github.com/fortran-lang/stdlib/releases/tag/v0.1.0
9+
310
- new module `stdlib_ascii`
411
[#32](https://github.com/fortran-lang/stdlib/pull/32)
512
- new module `stdlib_bitsets`
@@ -20,19 +27,21 @@
2027
- new module `stdlib_linalg`
2128
- new procedures `diag`, `eye` and `trace`
2229
[#170](https://github.com/fortran-lang/stdlib/pull/170)
23-
- new procedures `linspace` and `logspace`
24-
[#420](https://github.com/fortran-lang/stdlib/pull/420)
2530
- new procedure `outer_product`
2631
[#432](https://github.com/fortran-lang/stdlib/pull/432)
27-
- new procedure `arange`
28-
[#480](https://github.com/fortran-lang/stdlib/pull/480)
2932
- new module `stdlib_logger`
30-
- new derived type: `logger_type`
33+
- new derived type `logger_type`
3134
[#228](https://github.com/fortran-lang/stdlib/pull/228)
3235
[#261](https://github.com/fortran-lang/stdlib/pull/261)
3336
- new module `stdlib_math`
3437
- new procedure `clip`
3538
[#355](https://github.com/fortran-lang/stdlib/pull/355)
39+
- new procedures `linspace` and `logspace`
40+
[#420](https://github.com/fortran-lang/stdlib/pull/420)
41+
- new procedure `arange`
42+
[#480](https://github.com/fortran-lang/stdlib/pull/480)
43+
- new procedure `gcd`
44+
[#539](https://github.com/fortran-lang/stdlib/pull/539)
3645
- new module `stdlib_optval`
3746
[#73](https://github.com/fortran-lang/stdlib/pull/73)
3847
[#96](https://github.com/fortran-lang/stdlib/pull/96)

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.14.0)
22
project(fortran_stdlib
33
LANGUAGES Fortran
4-
VERSION 0
4+
VERSION 0.1.0
55
DESCRIPTION "Community driven and agreed upon de facto standard library for Fortran"
66
)
77
enable_testing()

ci/fpm.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "stdlib"
2-
version = "0.0.0"
2+
version = "0.1.0"
33
license = "MIT"
44
author = "stdlib contributors"
55
maintainer = "@fortran-lang/stdlib"

doc/changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: Changelog
3+
---
4+
5+
{!CHANGELOG.md!}

0 commit comments

Comments
 (0)