Skip to content

Commit

Permalink
v1.0.2
Browse files Browse the repository at this point in the history
- Fixed serialization of an empty `List` to `[]`
- Updated GitHub CI.
- lints: ^2.0.0
- test: ^1.17.12
- dependency_validator: ^3.2.0
- coverage: ^1.1.0
  • Loading branch information
gmpassos committed Jul 28, 2022
1 parent a68a80b commit a7ae574
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 11 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 1.0.2

- Fixed serialization of an empty `List` to `[]`
- Updated GitHub CI.
- lints: ^2.0.0
- test: ^1.17.12
- dependency_validator: ^3.2.0
- coverage: ^1.1.0

## 1.0.1

- Improve `pubspec.yaml` description.
Expand Down
26 changes: 20 additions & 6 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,30 @@
# Defines a default set of lint rules enforced for projects at Google. For
# details and rationale, see
# https://github.com/dart-lang/pedantic#enabled-lints.
# This file configures the static analysis results for your project (errors,
# warnings, and lints).
#
# This enables the 'recommended' set of lints from `package:lints`.
# This set helps identify many issues that may lead to problems when running
# or consuming Dart code, and enforces writing Dart using a single, idiomatic
# style and format.
#
# If you want a smaller set of lints you can change this to specify
# 'package:lints/core.yaml'. These are just the most critical lints
# (the recommended set includes the core lints).
# The core lints are also what is used by pub.dev for scoring packages.

include: package:pedantic/analysis_options.yaml
include: package:lints/recommended.yaml

# For lint rules and documentation, see http://dart-lang.github.io/linter/lints.
# Uncomment the following section to specify additional rules.

# Uncomment to specify additional rules.
# linter:
# rules:
# - camel_case_types

# analyzer:
# exclude:
# - path/to/excluded/files/**

# For more information about the core and recommended set of lints, see
# https://dart.dev/go/core-lints

# For additional information about configuring this file, see
# https://dart.dev/guides/language/analysis-options
10 changes: 5 additions & 5 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: yaml_writer
description: A library to write YAML documents, supporting Object encoding and 'dart:convert' 'Converter'.
version: 1.0.1
version: 1.0.2
homepage: https://github.com/gmpassos/yaml_writer

environment:
sdk: '>=2.12.0 <3.0.0'

dev_dependencies:
pedantic: ^1.11.0
test: ^1.17.9
dependency_validator: ^3.1.0
test_cov: ^1.0.1
lints: ^2.0.0
test: ^1.17.12
dependency_validator: ^3.2.0
coverage: ^1.1.0

0 comments on commit a7ae574

Please sign in to comment.