Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump stdlib version to 0.1.0 #538

Merged
merged 1 commit into from
Oct 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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()
Expand Down
2 changes: 1 addition & 1 deletion ci/fpm.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "stdlib"
version = "0.0.0"
version = "0.1.0"
license = "MIT"
author = "stdlib contributors"
maintainer = "@fortran-lang/stdlib"
Expand Down
5 changes: 5 additions & 0 deletions doc/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: Changelog
---

{!CHANGELOG.md!}