Skip to content

Commit b5248c8

Browse files
authored
Merge pull request #1636 from nextcloud/version/2.0
Preparation Version 2.0
2 parents 445dc1b + 3bfc7da commit b5248c8

File tree

7 files changed

+9
-63
lines changed

7 files changed

+9
-63
lines changed

.github/workflows/app-code-check-7.yml

Lines changed: 0 additions & 55 deletions
This file was deleted.

.github/workflows/app-code-check-8.yml renamed to .github/workflows/app-code-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
php-versions: ['8.0']
19+
php-versions: ['7.4', '8.0']
2020
server-versions: ['master', 'stable21']
2121

2222
name: AppCode check php${{ matrix.php-versions }}-${{ matrix.server-versions }}

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
php-versions: [7.4]
16+
php-versions: ['7.4', '8.0']
1717

1818
name: php-cs
1919

.github/workflows/static-analysis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
ocp-version: [ 'dev-master', 'dev-stable21', 'dev-stable20' ]
15+
ocp-version: [ 'dev-master', 'dev-stable21' ]
16+
php-versions: ['7.4', '8.0']
1617
name: Nextcloud ${{ matrix.ocp-version }}
1718
steps:
1819
- name: Checkout
1920
uses: actions/checkout@master
2021
- name: Set up php
2122
uses: shivammathur/setup-php@master
2223
with:
23-
php-version: 7.4
24+
php-version: ${{ matrix.php-versions }}
2425
coverage: none
2526
- name: Install dependencies
2627
run: composer i

appinfo/info.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<name>Polls</name>
66
<summary>A polls app, similar to doodle/dudle with the possibility to restrict access.</summary>
77
<description>A polls app, similar to doodle/dudle with the possibility to restrict access (members, certain groups/users, hidden and public).</description>
8-
<version>1.9.4</version>
8+
<version>2.0.0</version>
99
<licence>agpl</licence>
1010
<author>Vinzenz Rosenkranz</author>
1111
<author>René Gieling</author>
@@ -23,7 +23,7 @@
2323
<screenshot>https://raw.githubusercontent.com/nextcloud/polls/master/screenshots/vote.png</screenshot>
2424
<screenshot>https://raw.githubusercontent.com/nextcloud/polls/master/screenshots/edit-poll.png</screenshot>
2525
<dependencies>
26-
<nextcloud min-version="19" max-version="21" />
26+
<nextcloud min-version="21" max-version="22" />
2727
</dependencies>
2828
<background-jobs>
2929
<job>OCA\Polls\Cron\NotificationCron</job>

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "polls",
33
"description": "Polls app for nextcloud",
4-
"version": "1.9.4",
4+
"version": "2.0.0",
55
"authors": [
66
{
77
"name": "Vinzenz Rosenkranz",

0 commit comments

Comments
 (0)