Skip to content

Commit 808dc84

Browse files
committed
Merge branch 'release/2.8.1' into develop
2 parents 5c97303 + c32459a commit 808dc84

File tree

5 files changed

+15
-6
lines changed

5 files changed

+15
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file, per [the Ke
44

55
## [Unreleased] - TBD
66

7+
## [2.8.1] - 2024-11-12
8+
### Fixed
9+
- Ensure dependencies are included properly in the release (props [@dkotter](https://github.com/dkotter) via [#315](https://github.com/10up/simple-local-avatars/pull/315)).
10+
711
## [2.8.0] - 2024-11-12
812
**Note that this release bumps the minimum required version of WordPress from 6.4 to 6.5.**
913

@@ -362,6 +366,8 @@ All notable changes to this project will be documented in this file, per [the Ke
362366
- Initial release
363367

364368
[Unreleased]: https://github.com/10up/simple-local-avatars/compare/trunk...develop
369+
[2.8.1]: https://github.com/10up/simple-local-avatars/compare/2.8.0...2.8.1
370+
[2.8.0]: https://github.com/10up/simple-local-avatars/compare/2.7.11...2.8.0
365371
[2.7.11]: https://github.com/10up/simple-local-avatars/compare/2.7.10...2.7.11
366372
[2.7.10]: https://github.com/10up/simple-local-avatars/compare/2.7.9...2.7.10
367373
[2.7.9]: https://github.com/10up/simple-local-avatars/compare/2.7.8...2.7.9

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "simple-local-avatars",
3-
"version": "2.8.0",
3+
"version": "2.8.1",
44
"description": "Adds an avatar upload field to user profiles. Generates requested sizes on demand just like Gravatar!",
55
"license": "GPL-2.0-or-later",
66
"author": "10up <[email protected]> (https://10up.com)",

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: jakemgold, 10up, thinkoomph, jeffpaul, faisal03
33
Donate link: https://10up.com/plugins/simple-local-avatars-wordpress/
44
Tags: avatar, gravatar, user photos, users, profile
55
Tested up to: 6.7
6-
Stable tag: 2.8.0
6+
Stable tag: 2.8.1
77
License: GPL-2.0-or-later
88
License URI: https://spdx.org/licenses/GPL-2.0-or-later.html
99

@@ -45,6 +45,9 @@ No. Simple Local Avatars neither collects, stores, nor sends any PII data of vi
4545

4646
== Changelog ==
4747

48+
= 2.8.1 - 2024-11-12 =
49+
* **Fixed:** Ensure dependencies are included properly in the release (props [@dkotter](https://github.com/dkotter) via [#315](https://github.com/10up/simple-local-avatars/pull/315)).
50+
4851
= 2.8.0 - 2024-11-12 =
4952
**Note that this release bumps the minimum required version of WordPress from 6.4 to 6.5.**
5053

simple-local-avatars.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Simple Local Avatars
44
* Plugin URI: https://10up.com/plugins/simple-local-avatars-wordpress/
55
* Description: Adds an avatar upload field to user profiles. Generates requested sizes on demand, just like Gravatar! Simple and lightweight.
6-
* Version: 2.8.0
6+
* Version: 2.8.1
77
* Requires at least: 6.5
88
* Requires PHP: 7.4
99
* Author: 10up
@@ -35,7 +35,7 @@
3535
require_once dirname( __FILE__ ) . '/includes/class-simple-local-avatars.php';
3636

3737
// Global constants.
38-
define( 'SLA_VERSION', '2.8.0' );
38+
define( 'SLA_VERSION', '2.8.1' );
3939
define( 'SLA_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
4040

4141
if ( ! defined( 'SLA_IS_NETWORK' ) ) {

0 commit comments

Comments
 (0)