Skip to content

Commit

Permalink
chore(angular_bloc): v10.0.0-dev.2 (#4060)
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel authored Feb 12, 2024
1 parent c134bd3 commit bc5682f
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 39 deletions.
27 changes: 0 additions & 27 deletions .github/actions/angular_dart_package/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,6 @@ name: Angular Dart Package Workflow
description: Build and test Angular Dart packages.

inputs:
codecov_token:
required: true
description: The Codecov token used to upload coverage
concurrency:
required: false
default: "4"
description: The value of the concurrency flag (-j) used when running tests
coverage_excludes:
required: false
default: ""
description: Globs to exclude from coverage
dart_sdk:
required: false
default: "stable"
Expand All @@ -21,26 +10,10 @@ inputs:
required: false
default: "."
description: The working directory for this workflow
min_coverage:
required: false
default: "100"
description: The minimum coverage percentage value
min_score:
required: false
default: "120"
description: The minimum pana score value
analyze_directories:
required: false
default: "lib test"
description: Directories to analyze
report_on:
required: false
default: "lib"
description: Directories to report on when collecting coverage
platform:
required: false
default: "vm"
description: Platform to use when running tests

runs:
using: "composite"
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/dart_package/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ runs:
working-directory: ${{ inputs.working_directory }}
shell: ${{ inputs.shell }}
run: |
dart pub global activate pana
dart pub global activate pana 0.21.45
sudo apt-get install webp
PANA=$(pana . --no-warning); PANA_SCORE=$(echo $PANA | sed -n "s/.*Points: \([0-9]*\)\/\([0-9]*\)./\1\/\2/p")
echo "score: $PANA_SCORE"
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/flutter_package/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ runs:
working-directory: ${{ inputs.working_directory }}
shell: ${{ inputs.shell }}
run: |
dart pub global activate pana
dart pub global activate pana 0.21.45
sudo apt-get install webp
PANA=$(pana . --no-warning); PANA_SCORE=$(echo $PANA | sed -n "s/.*Points: \([0-9]*\)\/\([0-9]*\)./\1\/\2/p")
echo "score: $PANA_SCORE"
Expand Down
6 changes: 3 additions & 3 deletions examples/angular_counter/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ environment:
sdk: ">=3.0.0 <4.0.0"

dependencies:
angular_bloc: ^10.0.0-dev.0
angular_bloc: ^10.0.0-dev.2
bloc: ^8.1.1
ngdart: ^8.0.0-dev.2
ngdart: ^8.0.0-dev.4

dev_dependencies:
build_daemon: ^4.0.0
build_runner: ^2.0.0
build_web_compilers: ^3.0.0
build_web_compilers: ^4.0.0
6 changes: 3 additions & 3 deletions examples/github_search/angular_github_search/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ environment:
sdk: ">=3.0.0 <4.0.0"

dependencies:
angular_bloc: ^8.0.0
angular_bloc: ^10.0.0-dev.2
bloc: ^8.1.0
common_github_search:
path: ../common_github_search
ngdart: ^8.0.0-dev.2
ngdart: ^8.0.0-dev.4

dev_dependencies:
build_daemon: ^4.0.0
build_runner: ^2.0.0
build_web_compilers: ^3.0.0
build_web_compilers: ^4.0.0
7 changes: 7 additions & 0 deletions packages/angular_bloc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 10.0.0-dev.2

- chore(deps): upgrade to `package:ngdart 8.0.0-dev.4`
- chore: add `topics` to `pubspec.yaml`
- chore(deps): upgrade to `package:mocktail v1.0.0`
- chore: update sponsors

# 10.0.0-dev.1

- docs: upgrade to Dart 3
Expand Down
8 changes: 4 additions & 4 deletions packages/angular_bloc/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: angular_bloc
description: Angular Components that make it easy to implement the BLoC (Business Logic Component) design pattern. Built to be used with the bloc state management package.
version: 10.0.0-dev.1
version: 10.0.0-dev.2
repository: https://github.com/felangel/bloc/tree/master/packages/angular_bloc
issue_tracker: https://github.com/felangel/bloc/issues
homepage: https://bloclibrary.dev
Expand All @@ -12,15 +12,15 @@ environment:

dependencies:
bloc: ^8.0.0
ngdart: ^8.0.0-dev.0
ngdart: ^8.0.0-dev.4

dev_dependencies:
build_runner: ^2.0.0
build_test: ^2.0.0
build_web_compilers: ^3.0.0
build_web_compilers: ^4.0.0
meta: ^1.8.0
mocktail: ^1.0.0
ngtest: ^5.0.0-dev.0
ngtest: ^5.0.0-dev.3
test: ^1.16.0

screenshots:
Expand Down

0 comments on commit bc5682f

Please sign in to comment.