Skip to content
This repository was archived by the owner on Nov 1, 2024. It is now read-only.

Commit 4216525

Browse files
authored
prep for publishing 1.0.1 (#197)
1 parent b58e487 commit 4216525

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

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.

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());

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:

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)