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
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,38 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.8.0] - 2025-12-21

This version requires WordPress 6.4 and PHP 7.4 as a minimum.

### Added
- Dedicated edit page for ad codes, replacing inline edit functionality by @GaryJones in https://github.com/Automattic/ad-code-manager/pull/196
- Autocomplete for conditional arguments using Select2 (categories, tags, pages, posts) by @GaryJones in https://github.com/Automattic/ad-code-manager/pull/194
- Wrapper div with CSS classes for improved ad styling and targeting by @GaryJones in https://github.com/Automattic/ad-code-manager/pull/188
- wp-env configuration for local development by @GaryJones in https://github.com/Automattic/ad-code-manager/pull/178

### Fixed
- Validate unique tag IDs for DFP Async provider by @GaryJones in https://github.com/Automattic/ad-code-manager/pull/190
- Prevent empty widget wrapper output when no ad codes found by @GaryJones in https://github.com/Automattic/ad-code-manager/pull/186
- Ensure row actions display in first data column by @GaryJones in https://github.com/Automattic/ad-code-manager/pull/189

### Changed
- Update minimum WordPress version to 6.4 by @GaryJones in https://github.com/Automattic/ad-code-manager/pull/181

### Documentation
- Add PHPDoc documentation for all hooks by @GaryJones in https://github.com/Automattic/ad-code-manager/pull/193
- Add contextual help for DFP and AdSense provider fields by @GaryJones in https://github.com/Automattic/ad-code-manager/pull/191

### Maintenance
- Standardise GitHub Actions, add unit test workflow with Brain Monkey by @GaryJones in https://github.com/Automattic/ad-code-manager/pull/184
- Migrate integration tests from SVN to wp-env by @GaryJones in https://github.com/Automattic/ad-code-manager/pull/182
- Migrate dependabot reviewers to CODEOWNERS by @GaryJones in https://github.com/Automattic/ad-code-manager/pull/185
- Standardise test matrix and update readme by @GaryJones in https://github.com/Automattic/ad-code-manager/pull/187
- Add .npmrc and update package-lock by @GaryJones in https://github.com/Automattic/ad-code-manager/pull/198
- Bump actions/checkout from 5 to 6 by @dependabot in https://github.com/Automattic/ad-code-manager/pull/183
- Bump codecov/codecov-action from 3 to 5 by @dependabot in https://github.com/Automattic/ad-code-manager/pull/174
- Bump ramsey/composer-install from 2 to 3 by @dependabot in https://github.com/Automattic/ad-code-manager/pull/173

## [0.7.1] - 2023-09-09

### Changed
Expand Down Expand Up @@ -166,6 +198,7 @@ Bug fix release.

Initial release.

[0.8.0]: https://github.com/Automattic/ad-code-manager/compare/0.7.1...0.8.0
[0.7.1]: https://github.com/Automattic/ad-code-manager/compare/0.7.0...0.7.1
[0.7.0]: https://github.com/Automattic/ad-code-manager/compare/0.6.0...0.7.0
[0.6.0]: https://github.com/Automattic/ad-code-manager/compare/0.5...0.6.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Ad Code Manager

Stable tag: 0.7.1
Stable tag: 0.8.0
Requires at least: 6.4
Tested up to: 6.9
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: advertising, ad codes, ads, adsense, dfp, doubleclick for publishers
Contributors: rinatkhaziev, jeremyfelt, danielbachhuber, carldanley, zztimur, automattic, doejo
Contributors: rinatkhaziev, jeremyfelt, danielbachhuber, carldanley, zztimur, automattic, doejo, garyj

Manage your ad codes through the WordPress admin safely and easily.

Expand Down
4 changes: 2 additions & 2 deletions ad-code-manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Plugin Name: Ad Code Manager
* Plugin URI: https://wordpress.org/plugins/ad-code-manager/
* Description: Easy ad code management.
* Version: 0.7.1
* Version: 0.8.0
* Author: Automattic and contributors
* Author URI: https://github.com/Automattic/ad-code-manager/graphs/contributors
* Text Domain: ad-code-manager
Expand All @@ -31,7 +31,7 @@
use Automattic\AdCodeManager\UI\Contextual_Help;
use Automattic\AdCodeManager\UI\Plugin_Actions;

const AD_CODE_MANAGER_VERSION = '0.7.1';
const AD_CODE_MANAGER_VERSION = '0.8.0';
const AD_CODE_MANAGER_FILE = __FILE__;

require_once __DIR__ . '/src/class-acm-provider.php';
Expand Down
Loading