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

feat: expanded the Dart SDK compatibility range to '<4.0.0' #3

Merged
merged 8 commits into from
Feb 13, 2024
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [2.1.0] - 2024-02-10

- Expanded the Dart SDK compatibility range to '<4.0.0'.
-

## [2.0.1] - 2024-02-10

- **Enhanced comparability:** `operator ==` now uses `covariant` for better type safety and comparison accuracy.
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name: http_status
description: Constants enumerating the HTTP status codes in Dart. All status codes defined in RFC1945 (HTTP/1.0, RFC2616 (HTTP/1.1), and RFC2518 (WebDAV) are supported.
version: 2.0.1
version: 2.1.0
repository: https://github.com/DartForge/http_status
issue_tracker: https://github.com/DartForge/http_status/issues
homepage: https://github.com/DartForge/http_status
documentation: https://github.com/DartForge/http_status
topics: [http_status]
topics: [http-status]
# author:
# - Andrea Cantafio <kk4r.1m@gmail.com>
# - Andres Garcia (TECH-ANDGAR) <dev@tech-andgar.me>

environment:
sdk: '>=2.18.0 <3.0.0'
sdk: '>=2.18.0 <4.0.0'

dev_dependencies:
coverage: ^1.6.3
Expand Down
Loading