Skip to content

Commit

Permalink
Merge pull request #19 from flame-engine/chore/publish-v0.3.1
Browse files Browse the repository at this point in the history
chore: Publish v0.3.1
  • Loading branch information
spydon authored Mar 19, 2024
2 parents 5210512 + 0d017ca commit 2f63766
Show file tree
Hide file tree
Showing 5 changed files with 178 additions and 91 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,24 @@ jobs:
dartdoc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: cedx/setup-dart@v2
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- run: dart pub get
- run: dart pub run dartdoc --no-auto-include-dependencies --quiet
- run: dart run dartdoc --no-auto-include-dependencies --quiet

format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: cedx/setup-dart@v2
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- run: |
[ -z "$(dart format . | grep "(0 changed)")" ] && exit 1 || exit 0
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: cedx/setup-dart@v2
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- run: dart pub get
- run: dart analyze --fatal-infos --fatal-warnings
# END LINTING STAGE
Expand All @@ -39,17 +39,17 @@ jobs:
needs: [dartdoc, format, analyze]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: cedx/setup-dart@v2
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- run: dart pub get
- run: dart test

benchmark:
needs: [test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: cedx/setup-dart@v2
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- run: dart pub get
- run: dart pub run benchmark
- run: dart run benchmark
# END TESTING STAGE
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.3.1
- Component removal and HasNot fix
- Fix so that systems can't be added twice

## 0.3.0
- Fixed component removal so that it actually removes components
- Fixed `HasNot` filters to properly filter after a filtered component is added
Expand Down
10 changes: 6 additions & 4 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ packages:
dependency: transitive
description:
name: meta
url: "https://pub.dartlang.org"
sha256: "98a7492d10d7049ea129fd4e50f7cdd2d5008522b1dfa1148bbbc542b9dd21f7"
url: "https://pub.dev"
source: hosted
version: "1.3.0"
oxygen:
Expand All @@ -14,13 +15,14 @@ packages:
path: ".."
relative: true
source: path
version: "0.2.0"
version: "0.3.1"
pedantic:
dependency: "direct dev"
description:
name: pedantic
url: "https://pub.dartlang.org"
sha256: "8f6460c77a98ad2807cd3b98c67096db4286f56166852d0ce5951bb600a63594"
url: "https://pub.dev"
source: hosted
version: "1.11.0"
sdks:
dart: ">=2.12.0 <3.0.0"
dart: ">=2.15.0 <4.0.0"
Loading

0 comments on commit 2f63766

Please sign in to comment.