8000 chore: Upgrade dependencies by elias8 · Pull Request #7 · elias8/functional_enum · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

chore: Upgrade dependencies #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Oct 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations 10000
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/functional_enum/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.5

- Upgraded dependencies

## 1.1.4

- Upgraded dependencies
Expand Down
6 changes: 3 additions & 3 deletions packages/functional_enum/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ environment:
sdk: '>=2.12.0 <3.0.0'

dependencies:
functional_enum_annotation: ^1.2.2
functional_enum_annotation: ^1.2.3

dev_dependencies:
build_runner: ^2.1.2
test: ^1.17.12
build_runner: ^2.2.1
test: ^1.21.6
functional_enum:
path: ../
3 changes: 2 additions & 1 deletion packages/functional_enum/lib/src/enum_generator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,9 @@ class MethodGenerator {
}

void _addOrElseCallBack() {
if (!_isParamRequired())
if (!_isParamRequired()) {
_generated.writeln('required R Function() orElse,');
}
}

void _addParam(FieldElement field) {
Expand Down
12 changes: 6 additions & 6 deletions packages/functional_enum/pubspec.yaml
F003
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: functional_enum
description: Code generator for functional enum that makes the use of enums much better.
version: 1.1.4
version: 1.1.5
homepage: https://github.com/Elias8/functional_enum

environment:
sdk: '>=2.12.0 <3.0.0'

dependencies:
analyzer: ^2.3.0
build: ^2.1.0
build_config: ^1.0.0
functional_enum_annotation: ^1.2.1
source_gen: ^1.1.0
analyzer: ^5.1.0
build: ^2.3.1
build_config: ^1.1.0
functional_enum_annotation: ^1.2.3
source_gen: ^1.2.5
4 changes: 4 additions & 0 deletions packages/functional_enum_annotation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.2.3

- Upgraded `meta` dependency

## 1.2.2

- Upgraded `meta` dependency
Expand Down
4 changes: 2 additions & 2 deletions packages/functional_enum_annotation/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: functional_enum_annotation
description: Annotations for the functional_enum code generator package.
version: 1.2.2
version: 1.2.3
homepage: https://github.com/Elias8/functional_enum

environment:
sdk: '>=2.12.0 <3.0.0'

dependencies:
meta: ^1.7.0
meta: ^1.8.0

0