Skip to content

Commit

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

## 4.47.0 - 2024-03-09

- Requires `barrelstrength/sprout:4.1.8`
- See Sprout Framework Module [release notes][#418core]

[#418core]: https://github.com/barrelstrength/craft-sprout/blob/4.1.8/CHANGELOG/CHANGELOG-CORE.md

## 4.46.2 - 2024-02-27

- Requires `barrelstrength/sprout:4.1.7`
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-redirects",
"type": "craft-plugin",
"version": "4.46.2",
"version": "4.47.0",
"license": "proprietary",
"require": {
"barrelstrength/sprout": "^4.1.7",
"barrelstrength/sprout": "^4.1.8",
"craftcms/cms": "^4.3.0"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion src/SproutRedirects.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class SproutRedirects extends Plugin implements SproutPluginMigrationInterface
{
public string $minVersionRequired = '1.5.3';

public string $schemaVersion = '4.44.445';
public string $schemaVersion = '4.47.0';

public static function editions(): array
{
Expand Down
15 changes: 15 additions & 0 deletions src/migrations/m240309_033850_schema_4_47_0.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

namespace BarrelStrength\SproutRedirects\migrations;

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

class m240309_033850_schema_4_47_0 extends m000000_000000_sprout_plugin_migration
{
public function getPluginInstance(): SproutPluginMigrationInterface
{
return SproutRedirects::getInstance();
}
}

0 comments on commit b18774f

Please sign in to comment.