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

prep for publishing 1.0.1 #197

Merged
merged 1 commit into from
Mar 21, 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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 1.0.1-wip
## 1.0.1

- Update `ExpressionsProcessor.processFont` to handle null expressions.
- Require Dart 3.0.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down
2 changes: 1 addition & 1 deletion analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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

Expand Down