chore: set max SDK version to <3.0.0 (#106)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3a3630d..d418df9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 1.4.4
+
+* Set max SDK version to `<3.0.0`, and adjust other dependencies.
+
 ## 1.4.3
 
 * Display the default values for options with `allowedHelp` specified.
diff --git a/analysis_options.yaml b/analysis_options.yaml
index 4aa709e..c2bf9bf 100644
--- a/analysis_options.yaml
+++ b/analysis_options.yaml
@@ -1,6 +1,4 @@
 analyzer:
-  strong-mode: true
-
   errors:
     # TODO(nweiz): Remove this ignore when sdk#30084 is fixed or when args no
     # longer refers to its own deprecated members.
diff --git a/pubspec.yaml b/pubspec.yaml
index 09ad609..80b6033 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,13 +1,13 @@
 name: args
-version: 1.4.4-dev
+version: 1.4.4
 author: "Dart Team <misc@dartlang.org>"
 homepage: https://github.com/dart-lang/args
 description: >
  Library for defining parsers for parsing raw command-line arguments into
  a set of options and values using GNU and POSIX style options.
 
-dev_dependencies:
-  test: '>=0.12.0 <0.13.0'
-  
 environment:
-  sdk: '>=1.22.0 <2.0.0'
+  sdk: '>=1.22.0 <3.0.0'
+
+dev_dependencies:
+  test: '>=0.12.0 <2.0.0'