Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .changesets/20250318T160456-pr-11.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: "feat!: test since tags 3"
pr: 11
author: "jasonbahl"
type: "other"
breaking: true
description: |
null
---
10 changes: 10 additions & 0 deletions automation-tests.php
Original file line number Diff line number Diff line change
Expand Up @@ -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', '' )
}
Loading