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

Add support policy #805

Merged
merged 5 commits into from
Jan 14, 2025
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
1 change: 1 addition & 0 deletions Funcky.sln
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
.gitignore = .gitignore
changelog.md = changelog.md
README.md = README.md
SupportPolicy.md = SupportPolicy.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build Config", "Build Config", "{DD8F8450-BE23-4D6B-9C5C-7AED0ABB7531}"
Expand Down
22 changes: 22 additions & 0 deletions SupportPolicy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Support Policy

Funcky is a stable base-library which tries to support many scenario's in the .NET world.

## What Frameworks do we support?

We support the all the activly supported modern Framworks, .NET Standard 2.1, 2.0 And.NET 4.8+

* We only remove support for target frameworks on major version changes, to avoid breaking changes for the consumers.

## Testing

Testing with old framworks which are not supported anymore is getting painful, we therefore only test with frameworks which are still in active support.

## Next removal

Funcky 4 will remove the following target frameworks:

* net7.0
* net6.0
* net5.0
* netcoreapp3.1
Loading