Skip to content

Commit

Permalink
Release 5.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Numkil committed Sep 6, 2024
1 parent 011ec18 commit a57027c
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 52 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes for carbon-tracker

## 5.0.3 - 2024-09-02
### Fixed
- Website carbon sidebar always showed the OLDEST carbon result instead of the NEWEST

## 5.0.2 - 2024-09-02
### Added
- Fixed ttr on queue job
Expand Down Expand Up @@ -29,4 +33,4 @@
- Fixed issue with failing jobs on multi-site installs

## 4.0.0 - 2024-01-02
- Initial release 🚀
- Initial release 🚀
101 changes: 50 additions & 51 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,54 +1,53 @@
{
"name": "statikbe/craft-carbon-tracker",
"description": "Carbon tracker aims to raise awareness of the carbon emissions created by webpages, by displaying these insights along side the content in Craft's control panel.",
"type": "craft-plugin",
"version": "5.0.2",
"license": "mit",
"support": {
"email": "[email protected]",
"issues": "https://github.com/statikbe/craft-carbon-tracker/issues?state=open",
"source": "https://github.com/statikbe/craft-carbon-tracker",
"docs": "https://github.com/statikbe/craft-carbon-tracker",
"rss": "https://github.com/statikbe/craft-carbon-tracker/releases.atom"
},
"require": {
"craftcms/cms": "^5.0.0-beta.1"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main"
},
"authors": [
{
"name": "Jan Henckens",
"email": "[email protected]",
"homepage": "https://www.statik.de"
}
],
"autoload": {
"psr-4": {
"statikbe\\carbontracker\\": "src/"
}
},
"extra": {
"handle": "carbon-tracker",
"name": "Carbon Emissions Tracker",
"developer": "Statik.be",
"documentationUrl": "https://github.com/statikbe/craft-carbon-tracker",
"class": "statikbe\\carbontracker\\CarbonTracker"
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G",
"ci": "ecs check --ansi --fix && phpstan --memory-limit=1G"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
"name": "statikbe/craft-carbon-tracker",
"description": "Carbon tracker aims to raise awareness of the carbon emissions created by webpages, by displaying these insights along side the content in Craft's control panel.",
"type": "craft-plugin",
"version": "5.0.3",
"license": "mit",
"support": {
"email": "[email protected]",
"issues": "https://github.com/statikbe/craft-carbon-tracker/issues?state=open",
"source": "https://github.com/statikbe/craft-carbon-tracker",
"docs": "https://github.com/statikbe/craft-carbon-tracker",
"rss": "https://github.com/statikbe/craft-carbon-tracker/releases.atom"
},
"require": {
"craftcms/cms": "^5.0.0-beta.1"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main"
},
"authors": [
{
"name": "Jan Henckens",
"email": "[email protected]",
"homepage": "https://www.statik.de"
}
],
"autoload": {
"psr-4": {
"statikbe\\carbontracker\\": "src/"
}
},
"extra": {
"handle": "carbon-tracker",
"name": "Carbon Emissions Tracker",
"developer": "Statik.be",
"documentationUrl": "https://github.com/statikbe/craft-carbon-tracker",
"class": "statikbe\\carbontracker\\CarbonTracker"
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G",
"ci": "ecs check --ansi --fix && phpstan --memory-limit=1G"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}

0 comments on commit a57027c

Please sign in to comment.