Skip to content

Commit e9ede75

Browse files
committed
Merge branch 'develop' into trunk
2 parents eece73b + 0b01d8f commit e9ede75

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

.github/workflows/push-deploy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ jobs:
2222
- name: Build plugin
2323
run: npm run build
2424

25+
- name: Install Composer dependencies
26+
run: composer install --no-dev
27+
2528
- name: WordPress Plugin Deploy
2629
id: deploy
2730
uses: 10up/action-wordpress-plugin-deploy@stable

CHANGELOG.md

Lines changed: 4 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.2] - 2024-11-12
8+
### Fixed
9+
- Ensure dependencies are (actually) included properly in the release (props [@dkotter](https://github.com/dkotter) via [#316](https://github.com/10up/simple-local-avatars/pull/316)).
10+
711
## [2.8.1] - 2024-11-12
812
### Fixed
913
- 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)).

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.1",
3+
"version": "2.8.2",
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.1
6+
Stable tag: 2.8.2
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.2 - 2024-11-12 =
49+
* **Fixed:** Ensure dependencies are (actually) included properly in the release (props [@dkotter](https://github.com/dkotter) via [#316](https://github.com/10up/simple-local-avatars/pull/316)).
50+
4851
= 2.8.1 - 2024-11-12 =
4952
* **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)).
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.1
6+
* Version: 2.8.2
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.1' );
38+
define( 'SLA_VERSION', '2.8.2' );
3939
define( 'SLA_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
4040

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

0 commit comments

Comments
 (0)