From e25b8a3645d45e8056d1ba001d4d0119f5485323 Mon Sep 17 00:00:00 2001 From: Repo Assist Date: Mon, 23 Feb 2026 20:37:25 +0000 Subject: [PATCH 1/2] docs: add Contributing section to README.md Add a paragraph with contribution guidelines covering branching, PR scope, testing, issue-first discussion for major changes, and the F# Software Foundation Code of Conduct. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index c0ed874..eda5556 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,10 @@ See [the home page](http://fsprojects.github.io/FSharp.Control.AsyncSeq/) for details. The home page can be [edited, forked or cloned](https://github.com/fsprojects/FSharp.Control.AsyncSeq/tree/master/docs/content) Please contribute to this project. Don't ask for permission, just fork the repository and send pull requests. +## Contributing + +Contributions are warmly welcomed! To get started, fork the repository and create a branch from `main`. Keep pull requests small and focused on a single concern, and make sure all existing tests pass before submitting (`dotnet test`). For bug reports, please include a minimal reproduction. For significant new features or breaking changes, consider opening an issue first to discuss the approach with the maintainers. All contributors are expected to follow the [F# Software Foundation Code of Conduct](https://foundation.fsharp.org/code_of_conduct). + ## Version 4.0 — BCL IAsyncEnumerable Compatibility As of **v4.0**, `AsyncSeq<'T>` is a type alias for `System.Collections.Generic.IAsyncEnumerable<'T>` (the BCL type). This means: From e510a68847e48abc8ef40e1b0d1ed78e0d043b88 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 23 Feb 2026 20:38:55 +0000 Subject: [PATCH 2/2] ci: trigger CI checks