diff --git a/.changesets/20250318T160456-pr-11.md b/.changesets/20250318T160456-pr-11.md new file mode 100644 index 0000000..6966972 --- /dev/null +++ b/.changesets/20250318T160456-pr-11.md @@ -0,0 +1,9 @@ +--- +title: "feat!: test since tags 3" +pr: 11 +author: "jasonbahl" +type: "other" +breaking: true +description: | + null +--- diff --git a/automation-tests.php b/automation-tests.php index 63d0ffe..175a630 100644 --- a/automation-tests.php +++ b/automation-tests.php @@ -48,3 +48,13 @@ function test_since_next_version_again() { function test_since_next_version_again_2() { _deprecated_function( 'test_since_next_version_again_2', '4.4.0', '' ) } + +/** + * Testing a new feature with a since tag + * + * @since @next-version + * @deprecated @next-version This function was deprecated when it was added because it was just a test. + */ +function test_since_next_version_again_3() { + _deprecated_function( 'test_since_next_version_again_2', '@next-version', '' ) +}