Skip to content

Commit

Permalink
v2.0.1
Browse files Browse the repository at this point in the history
- Remove unnecessary trailing spaces from keys with values declared on a new line.

- test: ^1.25.8
- coverage: ^1.10.0
  • Loading branch information
gmpassos committed Oct 24, 2024
1 parent cd8346e commit 0012d14
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@v1
- name: Dart version
run: |
Expand All @@ -37,7 +37,9 @@ jobs:
dart run test --coverage=./coverage
dart pub global run coverage:format_coverage --packages=.dart_tool/package_config.json --report-on=lib --lcov -o ./coverage/lcov.info -i ./coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
directory: ./coverage/
flags: unittests
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 2.0.1

- Remove unnecessary trailing spaces from keys with values declared on a new line.

- test: ^1.25.8
- coverage: ^1.10.0

## 2.0.0

- Internals are reworked: now package is relying on a tree-like structure to improve maintainability and scalability.
Expand Down
6 changes: 3 additions & 3 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: 2.0.0
version: 2.0.1
homepage: https://github.com/gmpassos/yaml_writer

environment:
sdk: ">=3.0.0 <4.0.0"

dev_dependencies:
lints: ^3.0.0
test: ^1.25.1
test: ^1.25.8
dependency_validator: ^3.2.3
coverage: ^1.7.2
coverage: ^1.10.0

0 comments on commit 0012d14

Please sign in to comment.