Skip to content

Commit 4aece77

Browse files
chore(release): 1.1.9 [skip ci]
## [1.1.9](v1.1.8...v1.1.9) (2025-09-06) ### Bug Fixes * language detection ([75ea9c4](75ea9c4)), closes [#1](#1)
1 parent 75ea9c4 commit 4aece77

File tree

2 files changed

+47
-40
lines changed

2 files changed

+47
-40
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [1.1.9](https://github.com/mauricerenck/og-image/compare/v1.1.8...v1.1.9) (2025-09-06)
2+
3+
4+
### Bug Fixes
5+
6+
* language detection ([75ea9c4](https://github.com/mauricerenck/og-image/commit/75ea9c4427eb87e74a9c58d2bd57a46c3ad729ce)), closes [#1](https://github.com/mauricerenck/og-image/issues/1)
7+
18
## [1.1.8](https://github.com/mauricerenck/og-image/compare/v1.1.7...v1.1.8) (2024-12-30)
29

310

composer.json

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,43 @@
11
{
2-
"name": "mauricerenck/ogimage",
3-
"version": "1.1.8",
4-
"homepage": "https://github.com/mauricerenck/og-image",
5-
"description": "Creates an Open Graph Image for each page",
6-
"type": "kirby-plugin",
7-
"license": "MIT",
8-
"authors": [
9-
{
10-
"name": "Maurice Renck",
11-
"email": "[email protected]"
12-
}
13-
],
14-
"autoload": {
15-
"psr-4": {
16-
"mauricerenck\\OgImage\\": "lib/"
2+
"name": "mauricerenck/ogimage",
3+
"version": "1.1.9",
4+
"homepage": "https://github.com/mauricerenck/og-image",
5+
"description": "Creates an Open Graph Image for each page",
6+
"type": "kirby-plugin",
7+
"license": "MIT",
8+
"authors": [
9+
{
10+
"name": "Maurice Renck",
11+
"email": "[email protected]"
12+
}
13+
],
14+
"autoload": {
15+
"psr-4": {
16+
"mauricerenck\\OgImage\\": "lib/"
17+
},
18+
"classmap": [
19+
"lib"
20+
]
21+
},
22+
"config": {
23+
"optimize-autoloader": true,
24+
"allow-plugins": {
25+
"getkirby/composer-installer": true
26+
}
27+
},
28+
"require": {
29+
"php": ">=8.2.0",
30+
"getkirby/composer-installer": "^1.2"
31+
},
32+
"require-dev": {
33+
"getkirby/cms": "^5"
1734
},
18-
"classmap": [
19-
"lib"
20-
]
21-
},
22-
"config": {
23-
"optimize-autoloader": true,
24-
"allow-plugins": {
25-
"getkirby/composer-installer": true
35+
"scripts": {
36+
"test": "vendor/bin/phpunit --testdox --colors=always",
37+
"build-test-package": "git archive HEAD -o ogimage.zip --worktree-attributes",
38+
"build-composer": "composer install --no-dev --optimize-autoloader",
39+
"build-release": [
40+
"composer install --no-dev --optimize-autoloader"
41+
]
2642
}
27-
},
28-
"require": {
29-
"php": ">=8.2.0",
30-
"getkirby/composer-installer": "^1.2"
31-
},
32-
"require-dev": {
33-
"getkirby/cms": "^5"
34-
},
35-
"scripts": {
36-
"test": "vendor/bin/phpunit --testdox --colors=always",
37-
"build-test-package": "git archive HEAD -o ogimage.zip --worktree-attributes",
38-
"build-composer": "composer install --no-dev --optimize-autoloader",
39-
"build-release": [
40-
"composer install --no-dev --optimize-autoloader"
41-
]
42-
}
43-
}
43+
}

0 commit comments

Comments
 (0)