Skip to content

Commit 6d0a3d1

Browse files
authored
prep for publishing 1.0.1 (dart-archive/csslib#197)
1 parent e1a98cd commit 6d0a3d1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

pkgs/csslib/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 1.0.1-wip
1+
## 1.0.1
22

33
- Update `ExpressionsProcessor.processFont` to handle null expressions.
44
- Require Dart 3.0.

pkgs/csslib/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Parsing CSS is easy!
1111
```dart
1212
import 'package:csslib/parser.dart';
1313
14-
main() {
14+
void main() {
1515
var stylesheet = parse(
1616
'.foo { color: red; left: 20px; top: 20px; width: 100px; height:200px }');
1717
print(stylesheet.toDebugString());

pkgs/csslib/analysis_options.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ analyzer:
66
strict-inference: true
77
strict-raw-types: true
88
errors:
9-
comment_references: ignore #too many false positives
9+
comment_references: ignore # too many false positives
1010

1111
linter:
1212
rules:

pkgs/csslib/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: csslib
2-
version: 1.0.1-wip
2+
version: 1.0.1
33
description: A library for parsing and analyzing CSS (Cascading Style Sheets).
44
repository: https://github.com/dart-lang/csslib
55

0 commit comments

Comments
 (0)