Skip to content
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

chore: Publish v0.3.1 #19

Merged
merged 4 commits into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should ignore this file

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
Loading