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

Update changelog #590

Merged
merged 2 commits into from
Dec 7, 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
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Unreleased

Features available from the latest git source

- new module `stdlib_distribution_uniform`
[#272](https://github.com/fortran-lang/stdlib/pull/272)
- new module `stdlib_selection`
[#500](https://github.com/fortran-lang/stdlib/pull/500)
- new procedures `select`, `arg_select`
- new module `stdlib_version`
[#579](https://github.com/fortran-lang/stdlib/pull/579)
- new procedure `get_stdlib_version`
- new module `stdlib_io_npy`
[#581](https://github.com/fortran-lang/stdlib/pull/581)
- new procedures `save_npy`, `load_npy`

Changes to existing modules

- change in module `stdlib_math`
- `linspace` and `logspace` made pure
[#549](https://github.com/fortran-lang/stdlib/pull/549)
- change in module `stdlib_string_type`
- `move` procedure made *pure*/*elemental*
[#562](https://github.com/fortran-lang/stdlib/pull/562)
- support for quadruple precision made optional
[#565](https://github.com/fortran-lang/stdlib/pull/565)


# Version 0.1.0

Expand Down
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ You are welcome to propose changes to the workflow by
* Smaller PRs are better than large PRs, and will lead to a shorter review and
merge cycle.
* Add tests for your feature or bug fix to be sure that it stays functional and useful.
* Include new features and changes in the
[CHANGELOG](https://github.com/fortran-lang/stdlib/blob/master/CHANGELOG.md)
* Be open to constructive criticism and requests for improving your code.
* Again, please follow the
[Fortran stdlib style guide](https://github.com/fortran-lang/stdlib/blob/master/STYLE_GUIDE.md).
Expand Down