Skip to content

Commit

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

## 4.46.4 - 2024-02-27

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

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

## 4.46.3 - 2023-11-05

- Requires `barrelstrength/sprout:4.1.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": "4.46.3",
"version": "4.46.4",
"license": "proprietary",
"require": {
"barrelstrength/sprout": "^4.1.5",
"barrelstrength/sprout": "^4.1.7",
"craftcms/cms": "^4.3.0"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion src/SproutDataStudio.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

class SproutDataStudio extends Plugin implements SproutPluginMigrationInterface
{
public string $schemaVersion = '4.44.444';
public string $schemaVersion = '4.44.445';

public static function editions(): array
{
Expand Down
15 changes: 15 additions & 0 deletions src/migrations/m240227_142826_schema_4_44_445.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 m240227_142826_schema_4_44_445 extends m000000_000000_sprout_plugin_migration
{
public function getPluginInstance(): SproutPluginMigrationInterface
{
return SproutDataStudio::getInstance();
}
}

0 comments on commit db96b46

Please sign in to comment.