Skip to content

Commit 60648c1

Browse files
chore(release): 3.2.0 [skip ci]
# [3.2.0](v3.1.0...v3.2.0) (2024-02-27) ### Bug Fixes * localhost api requests run into timeout ([844c73b](844c73b)), closes [#65](#65) ### Features * allow various audio formats ([72b5f16](72b5f16)), closes [#67](#67)
1 parent 844c73b commit 60648c1

File tree

2 files changed

+26
-5
lines changed

2 files changed

+26
-5
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# [3.2.0](https://github.com/mauricerenck/kirby-podcaster/compare/v3.1.0...v3.2.0) (2024-02-27)
2+
3+
4+
### Bug Fixes
5+
6+
* localhost api requests run into timeout ([844c73b](https://github.com/mauricerenck/kirby-podcaster/commit/844c73ba3f429791dd801149632837ee7fce8fb7)), closes [#65](https://github.com/mauricerenck/kirby-podcaster/issues/65)
7+
8+
9+
### Features
10+
11+
* allow various audio formats ([72b5f16](https://github.com/mauricerenck/kirby-podcaster/commit/72b5f1694b57d18435111b07b06a69edefbae010)), closes [#67](https://github.com/mauricerenck/kirby-podcaster/issues/67)
12+
113
# [3.1.0](https://github.com/mauricerenck/kirby-podcaster/compare/v3.0.3...v3.1.0) (2024-01-31)
214

315

composer.json

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mauricerenck/podcaster",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"description": "A Kirby Podcast Plugin",
55
"homepage": "https://github.com/mauricerenck/kirby-podcaster",
66
"type": "kirby-plugin",
@@ -15,7 +15,9 @@
1515
"psr-4": {
1616
"mauricerenck\\Podcaster\\": "app"
1717
},
18-
"classmap": ["app"]
18+
"classmap": [
19+
"app"
20+
]
1921
},
2022
"require": {
2123
"getkirby/composer-installer": "^1.2",
@@ -34,10 +36,17 @@
3436
}
3537
},
3638
"scripts": {
37-
"start": ["Composer\\Config::disableProcessTimeout", "php -S localhost:8000 kirby/router.php"],
39+
"start": [
40+
"Composer\\Config::disableProcessTimeout",
41+
"php -S localhost:8000 kirby/router.php"
42+
],
3843
"test": "vendor/bin/phpunit --testdox --colors=always tests",
3944
"build-test-package": "git archive HEAD -o podcaster.zip --worktree-attributes",
4045
"build-composer": "composer install --no-dev --optimize-autoloader",
41-
"build-release": ["composer test", "composer install --no-dev --optimize-autoloader", "npm run build"]
46+
"build-release": [
47+
"composer test",
48+
"composer install --no-dev --optimize-autoloader",
49+
"npm run build"
50+
]
4251
}
43-
}
52+
}

0 commit comments

Comments
 (0)