Skip to content

Commit 40df875

Browse files
committed
Merge branch 'develop'
* develop: Bump version to 0.3.9 Modify document Update codeql workflow Change strategy methods to take `terminable` keyword parameter Refactor specs Fix document Add build with 3.2.0-preview1 Update build workflow Run `rubocop -A` Add dependabot.yml Run `bundle update` Update documents and examples
2 parents 3d6a342 + e996062 commit 40df875

29 files changed

+860
-491
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
target-branch: "develop"

.github/workflows/build.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,17 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
ruby: ['2.4', '2.5', '2.6', '2.7', '3.0', '3.1']
8+
ruby: ['2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2.0-preview1']
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v3
1111
- uses: ruby/setup-ruby@v1
1212
with:
1313
ruby-version: ${{ matrix.ruby }}
1414
- run: gem install bundler:2.3.7
15-
- uses: actions/cache@v2
15+
- uses: actions/cache@v3
1616
with:
1717
path: vendor/bundle
1818
key: ${{ runner.os }}-ruby-${{ matrix.ruby }}-gems-${{ hashFiles('**/Gemfile.lock') }}
19-
restore-keys: |
20-
${{ runner.os }}-gems-
2119
- name: Run bundle install
2220
run: |
2321
bundle config path vendor/bundle

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v2
41+
uses: actions/checkout@v3
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v1
45+
uses: github/codeql-action/init@v2
4646
with:
4747
languages: ${{ matrix.language }}
4848
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -53,7 +53,7 @@ jobs:
5353
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5454
# If this step fails, then you should remove it and run the build manually (see below)
5555
- name: Autobuild
56-
uses: github/codeql-action/autobuild@v1
56+
uses: github/codeql-action/autobuild@v2
5757

5858
# ℹ️ Command-line programs to run using the OS shell.
5959
# 📚 https://git.io/JvXDl
@@ -67,4 +67,4 @@ jobs:
6767
# make release
6868

6969
- name: Perform CodeQL Analysis
70-
uses: github/codeql-action/analyze@v1
70+
uses: github/codeql-action/analyze@v2

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
## [Unreleased]
22

3+
## [0.3.9] - 2022-11-06
4+
5+
- Change `CallableTree::Node::Internal#broadcastable` to take `terminable` keyword parameter as boolean. It defaults to `false`, which is the same behavior as before.
6+
- Change `CallableTree::Node::Internal#composable` to take `terminable` keyword parameter as boolean. It defaults to `false`, which is the same behavior as before.
7+
- Change `CallableTree::Node::Internal#seekable` to take `terminable` keyword parameter as boolean. It defaults to `true`, which is the same behavior as before.
8+
39
## [0.3.8] - 2022-05-05
410

511
- (Experimental) Add `CallableTree::Node::Internal::Builder#identifier`.

Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
callable_tree (0.3.8)
4+
callable_tree (0.3.9)
55

66
GEM
77
remote: https://rubygems.org/
@@ -14,13 +14,13 @@ GEM
1414
rspec-mocks (~> 3.11.0)
1515
rspec-core (3.11.0)
1616
rspec-support (~> 3.11.0)
17-
rspec-expectations (3.11.0)
17+
rspec-expectations (3.11.1)
1818
diff-lcs (>= 1.2.0, < 2.0)
1919
rspec-support (~> 3.11.0)
2020
rspec-mocks (3.11.1)
2121
diff-lcs (>= 1.2.0, < 2.0)
2222
rspec-support (~> 3.11.0)
23-
rspec-support (3.11.0)
23+
rspec-support (3.11.1)
2424

2525
PLATFORMS
2626
x86_64-darwin-21

0 commit comments

Comments
 (0)