Skip to content

Commit

Permalink
Prep release
Browse files Browse the repository at this point in the history
  • Loading branch information
BenParizek committed Jun 30, 2024
1 parent 0c3d7fa commit 4b21bcc
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 5.0.0 - 2024-06-30

- Requires `barrelstrength/sprout:5.0.0`
- See Data Studio Module [release notes][#500datastudio]
- See Sprout Framework Module [release notes][#500core]

[#500datastudio]: https://github.com/barrelstrength/craft-sprout/blob/5.0.0/CHANGELOG/CHANGELOG-DATA-STUDIO.md
[#500core]: https://github.com/barrelstrength/craft-sprout/blob/5.0.0/CHANGELOG/CHANGELOG-CORE.md

## 4.46.6 - 2024-05-18

- Requires `barrelstrength/sprout:4.2.5`
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "barrelstrength/sprout-data-studio",
"type": "craft-plugin",
"version": "5.0.0-alpha.1",
"version": "5.0.0",
"license": "proprietary",
"require": {
"barrelstrength/sprout": "^5.0.0-alpha.1",
"barrelstrength/sprout": "^5.0.0",
"craftcms/cms": "^5.1.7"
},
"autoload": {
Expand Down
15 changes: 15 additions & 0 deletions src/migrations/m240630_060348_schema_5_0_0.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

namespace BarrelStrength\SproutDataStudio\migrations;

use BarrelStrength\Sprout\core\db\m000000_000000_sprout_plugin_migration;
use BarrelStrength\Sprout\core\db\SproutPluginMigrationInterface;
use BarrelStrength\SproutDataStudio\SproutDataStudio;

class m240630_060348_schema_5_0_0 extends m000000_000000_sprout_plugin_migration
{
public function getPluginInstance(): SproutPluginMigrationInterface
{
return SproutDataStudio::getInstance();
}
}

0 comments on commit 4b21bcc

Please sign in to comment.