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 673de8d commit 2c3b9ec
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 4 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.2 - 2024-02-27

- Requires `barrelstrength/sprout:4.1.7`
- See Redirects Module [release notes][#417redirects]
- See Sprout Framework Module [release notes][#417core]

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

## 4.46.1 - 2023-09-15

- Requires `barrelstrength/sprout:v4.1.2`
Expand Down
6 changes: 3 additions & 3 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.1",
"version": "4.46.2",
"license": "proprietary",
"require": {
"barrelstrength/sprout": "^4.1.2",
"barrelstrength/sprout": "^4.1.7",
"craftcms/cms": "^4.3.0"
},
"autoload": {
Expand All @@ -21,4 +21,4 @@
"documentationUrl": "https://barrelstrengthdesign.com",
"class": "BarrelStrength\\SproutRedirects\\SproutRedirects"
}
}
}
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.444';
public string $schemaVersion = '4.44.445';

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

0 comments on commit 2c3b9ec

Please sign in to comment.