From 9e56da3c4df8c06cafd9e9ac72ab4824eb4ff65b Mon Sep 17 00:00:00 2001
From: Devon Carew <devoncarew@google.com>
Date: Thu, 21 Mar 2024 10:29:34 -0700
Subject: [PATCH] prep for publishing 1.0.1

---
 CHANGELOG.md          | 2 +-
 README.md             | 2 +-
 analysis_options.yaml | 2 +-
 pubspec.yaml          | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 39c84cb..d1987e6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,4 @@
-## 1.0.1-wip
+## 1.0.1
 
 - Update `ExpressionsProcessor.processFont` to handle null expressions.
 - Require Dart 3.0.
diff --git a/README.md b/README.md
index dd7422b..954917d 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@ Parsing CSS is easy!
 ```dart
 import 'package:csslib/parser.dart';
 
-main() {
+void main() {
   var stylesheet = parse(
       '.foo { color: red; left: 20px; top: 20px; width: 100px; height:200px }');
   print(stylesheet.toDebugString());
diff --git a/analysis_options.yaml b/analysis_options.yaml
index 25e2df4..6c38fe4 100644
--- a/analysis_options.yaml
+++ b/analysis_options.yaml
@@ -6,7 +6,7 @@ analyzer:
     strict-inference: true
     strict-raw-types: true
   errors:
-    comment_references: ignore #too many false positives
+    comment_references: ignore # too many false positives
 
 linter:
   rules:
diff --git a/pubspec.yaml b/pubspec.yaml
index 7a1cb94..c54495d 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: csslib
-version: 1.0.1-wip
+version: 1.0.1
 description: A library for parsing and analyzing CSS (Cascading Style Sheets).
 repository: https://github.com/dart-lang/csslib