Skip to content
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
5 changes: 5 additions & 0 deletions .github/workflows/create_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ jobs:
shell: bash # for windows
run: echo "CURRENT_VERSION=$(dart pub deps --style compact | grep "libedax4dart" | cut -c 14-)" >> $GITHUB_ENV

- name: workaround for https://github.com/sensuikan1973/libedax4dart/issues/828
if: runner.os == 'Windows'
shell: bash
run: git config --system core.longpaths true

- name: build libedax
shell: bash
env:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/dart_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ jobs:
steps:
- uses: actions/checkout@v5
- uses: dart-lang/setup-dart@v1
- name: workaround for https://github.com/sensuikan1973/libedax4dart/issues/828
if: runner.os == 'Windows'
shell: bash
run: git config --system core.longpaths true
- name: build libedax
shell: bash
env:
Expand Down
2 changes: 1 addition & 1 deletion .libedax-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
f3c864412563797dbef94b059eaebcf6ea06dfaa
b80bcc1af736a83ba0f84429d064a4876609ce14
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 7.54.0
upgrade libedax. See: https://github.com/sensuikan1973/edax-reversi/compare/f3c864412563797dbef94b059eaebcf6ea06dfaa...sensuikan1973:edax-reversi:b80bcc1af736a83ba0f84429d064a4876609ce14

# 7.53.0

upgrade dependencies.
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ packages:
path: ".."
relative: true
source: path
version: "7.52.0"
version: "7.54.0"
lints:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See: https://dart.dev/tools/pub/publishing

name: libedax4dart
version: 7.53.0
version: 7.54.0
description: Dart wrapper for libedax. With using libedax4dart, you can execute functions equivalent to edax.
homepage: https://github.com/sensuikan1973/libedax4dart
repository: https://github.com/sensuikan1973/libedax4dart
Expand Down
Loading