Skip to content

Commit 1892dc9

Browse files
committed
Open 2.1.x-dev
1 parent 46b9819 commit 1892dc9

13 files changed

+27
-27
lines changed

.github/workflows/backward-compatibility.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
pull_request:
77
push:
88
branches:
9-
- "2.0.x"
9+
- "2.1.x"
1010
paths:
1111
- 'src/**'
1212
- '.github/workflows/backward-compatibility.yml'

.github/workflows/build-issue-bot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- '.github/workflows/build-issue-bot.yml'
1010
push:
1111
branches:
12-
- "2.0.x"
12+
- "2.1.x"
1313
paths:
1414
- 'issue-bot/**'
1515
- '.github/workflows/build-issue-bot.yml'

.github/workflows/changelog-generator.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- '.github/workflows/changelog-generator.yml'
1010
push:
1111
branches:
12-
- "2.0.x"
12+
- "2.1.x"
1313
paths:
1414
- 'changelog-generator/**'
1515
- '.github/workflows/changelog-generator.yml'

.github/workflows/checksum-phar.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
- '.github/workflows/checksum-phar.yml'
1313
push:
1414
branches:
15-
- "2.0.x"
15+
- "2.1.x"
1616
paths:
1717
- 'compiler/**'
1818
- '.github/workflows/checksum-phar.yml'
@@ -34,7 +34,7 @@ jobs:
3434
with:
3535
repository: phpstan/phpstan
3636
path: phpstan-dist
37-
ref: 2.0.x
37+
ref: 2.1.x
3838

3939
- name: "Get info"
4040
id: info
@@ -98,14 +98,14 @@ jobs:
9898
- name: "Composer dump"
9999
run: "composer install --no-interaction --no-progress"
100100
env:
101-
COMPOSER_ROOT_VERSION: "2.0.x-dev"
101+
COMPOSER_ROOT_VERSION: "2.1.x-dev"
102102

103103
- name: "Compile PHAR for checksum"
104104
working-directory: "compiler/build"
105105
run: "php box.phar compile --no-parallel"
106106
env:
107107
PHAR_CHECKSUM: "1"
108-
COMPOSER_ROOT_VERSION: "2.0.x-dev"
108+
COMPOSER_ROOT_VERSION: "2.1.x-dev"
109109

110110
- name: "Re-sign PHAR"
111111
run: "php compiler/build/resign.php tmp/phpstan.phar"

.github/workflows/e2e-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- 'issue-bot/**'
1212
push:
1313
branches:
14-
- "2.0.x"
14+
- "2.1.x"
1515
paths-ignore:
1616
- 'compiler/**'
1717
- 'apigen/**'

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
pull_request:
77
push:
88
branches:
9-
- "2.0.x"
9+
- "2.1.x"
1010

1111
concurrency:
1212
group: lint-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches

.github/workflows/phar.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ on:
66
pull_request:
77
push:
88
branches:
9-
- "2.0.x"
9+
- "2.1.x"
1010
tags:
11-
- '2.0.*'
11+
- '2.1.*'
1212

1313
concurrency:
1414
group: phar-${{ github.ref }} # will be canceled on subsequent pushes in both branches and pull requests
@@ -77,14 +77,14 @@ jobs:
7777
- name: "Composer dump"
7878
run: "composer install --no-interaction --no-progress"
7979
env:
80-
COMPOSER_ROOT_VERSION: "2.0.x-dev"
80+
COMPOSER_ROOT_VERSION: "2.1.x-dev"
8181

8282
- name: "Compile PHAR for checksum"
8383
working-directory: "compiler/build"
8484
run: "php box.phar compile --no-parallel"
8585
env:
8686
PHAR_CHECKSUM: "1"
87-
COMPOSER_ROOT_VERSION: "2.0.x-dev"
87+
COMPOSER_ROOT_VERSION: "2.1.x-dev"
8888

8989
- name: "Re-sign PHAR"
9090
run: "php compiler/build/resign.php tmp/phpstan.phar"
@@ -107,30 +107,30 @@ jobs:
107107
integration-tests:
108108
if: github.event_name == 'pull_request'
109109
needs: compiler-tests
110-
uses: phpstan/phpstan/.github/workflows/integration-tests.yml@2.0.x
110+
uses: phpstan/phpstan/.github/workflows/integration-tests.yml@2.1.x
111111
with:
112-
ref: 2.0.x
112+
ref: 2.1.x
113113
phar-checksum: ${{needs.compiler-tests.outputs.checksum}}
114114

115115
extension-tests:
116116
if: github.event_name == 'pull_request'
117117
needs: compiler-tests
118-
uses: phpstan/phpstan/.github/workflows/extension-tests.yml@2.0.x
118+
uses: phpstan/phpstan/.github/workflows/extension-tests.yml@2.1.x
119119
with:
120-
ref: 2.0.x
120+
ref: 2.1.x
121121
phar-checksum: ${{needs.compiler-tests.outputs.checksum}}
122122

123123
other-tests:
124124
if: github.event_name == 'pull_request'
125125
needs: compiler-tests
126-
uses: phpstan/phpstan/.github/workflows/other-tests.yml@2.0.x
126+
uses: phpstan/phpstan/.github/workflows/other-tests.yml@2.1.x
127127
with:
128-
ref: 2.0.x
128+
ref: 2.1.x
129129
phar-checksum: ${{needs.compiler-tests.outputs.checksum}}
130130

131131
commit:
132132
name: "Commit PHAR"
133-
if: "github.repository_owner == 'phpstan' && (github.ref == 'refs/heads/2.0.x' || startsWith(github.ref, 'refs/tags/'))"
133+
if: "github.repository_owner == 'phpstan' && (github.ref == 'refs/heads/2.1.x' || startsWith(github.ref, 'refs/tags/'))"
134134
needs: compiler-tests
135135
runs-on: "ubuntu-latest"
136136
timeout-minutes: 60
@@ -152,7 +152,7 @@ jobs:
152152
repository: phpstan/phpstan
153153
path: phpstan-dist
154154
token: ${{ secrets.PHPSTAN_BOT_TOKEN }}
155-
ref: 2.0.x
155+
ref: 2.1.x
156156

157157
- name: "Get previous pushed dist commit"
158158
id: previous-commit

.github/workflows/reflection-golden-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- 'issue-bot/**'
1212
push:
1313
branches:
14-
- "2.0.x"
14+
- "2.1.x"
1515
paths-ignore:
1616
- 'compiler/**'
1717
- 'apigen/**'

.github/workflows/spelling.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
pull_request:
77
push:
88
branches:
9-
- "2.0.x"
9+
- "2.1.x"
1010

1111
jobs:
1212
typos:

.github/workflows/static-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- 'apigen/**'
1010
push:
1111
branches:
12-
- "2.0.x"
12+
- "2.1.x"
1313
paths-ignore:
1414
- 'compiler/**'
1515
- 'apigen/**'

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- 'issue-bot/**'
1212
push:
1313
branches:
14-
- "2.0.x"
14+
- "2.1.x"
1515
paths-ignore:
1616
- 'compiler/**'
1717
- 'apigen/**'

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"symfony/string": "^5.4.3"
4949
},
5050
"replace": {
51-
"phpstan/phpstan": "2.0.x",
51+
"phpstan/phpstan": "2.1.x",
5252
"symfony/polyfill-php73": "*"
5353
},
5454
"require-dev": {

composer.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)