Skip to content

Commit 3b879bd

Browse files
authored
Release: Bump plugin version and add the changelog for 1.0.2. (#410)
* Dependencies: Bump Git Updater Lite to 2.3.3. * Release: Bump the plugin version. * Release: Add changelog for 1.0.2.
1 parent 96a82e8 commit 3b879bd

File tree

11 files changed

+21
-18
lines changed

11 files changed

+21
-18
lines changed

.github/ISSUE_TEMPLATE/BugReport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ body:
3131
label: Version
3232
description: What version of AspireUpdate are you running?
3333
options:
34-
- 1.0.1 (Latest)
34+
- 1.0.2 (Latest)
3535
- Nightly
3636
default: 0
3737
validations:

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
[unreleased]
22

3+
#### 1.0.2
4+
* Dependencies: Updated Git Updater Lite to version 2.3.3.
5+
36
#### 1.0.1
47
* Assets: Added plugin icon and banner files.
58
* Dependencies: Updated Git Updater Lite to version 2.3.2.

aspire-update.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Plugin Name: AspireUpdate
1111
* Plugin URI: https://aspirepress.org/
1212
* Description: Update plugins and themes for WordPress.
13-
* Version: 1.0.1
13+
* Version: 1.0.2
1414
* Author: AspirePress
1515
* Author URI: https://docs.aspirepress.org/aspireupdate/
1616
* Requires at least: 5.3
@@ -28,7 +28,7 @@
2828
}
2929

3030
if ( ! defined( 'AP_VERSION' ) ) {
31-
define( 'AP_VERSION', '1.0.1' );
31+
define( 'AP_VERSION', '1.0.2' );
3232
}
3333

3434

assets/playground/blueprint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"blogname": "AspireUpdate Demo Site"
1818
},
1919
"plugins": [
20-
"https://github-proxy.com/proxy/?repo=AspirePress/AspireUpdate&release=1.0.1",
20+
"https://github-proxy.com/proxy/?repo=AspirePress/AspireUpdate&release=1.0.2",
2121
"error-log-viewer",
2222
"plugin-check"
2323
],

composer.lock

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

languages/aspireupdate.pot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
# This file is distributed under the GPLv2.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: AspireUpdate 1.0.1\n"
5+
"Project-Id-Version: AspireUpdate 1.0.2\n"
66
"Report-Msgid-Bugs-To: https://github.com/aspirepress/aspireupdate/issues\n"
77
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
88
"Language-Team: LANGUAGE <[email protected]>\n"
99
"MIME-Version: 1.0\n"
1010
"Content-Type: text/plain; charset=UTF-8\n"
1111
"Content-Transfer-Encoding: 8bit\n"
12-
"POT-Creation-Date: 2025-06-09T15:31:13+00:00\n"
12+
"POT-Creation-Date: 2025-06-09T17:36:36+00:00\n"
1313
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1414
"X-Generator: WP-CLI 2.12.0\n"
1515
"X-Domain: aspireupdate\n"

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": "aspire-update",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "This plugin allows a WordPress user to automatically rewrite certain URLs and URL paths to a new URL. This is helpful because it allows for the rewriting of `api.wordpress.org` to some other repository that contains the plugins the user wants.",
55
"repository": {
66
"type": "git",

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: sarah-savage, namithj, asirota
33
Donate link: https://github.com/sponsors/aspirepress
44
Requires at least: 5.3
55
Tested up to: 6.8.1
6-
Stable tag: 1.0.1
6+
Stable tag: 1.0.2
77
Requires PHP: 7.4
88
License: GPLv2
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html

vendor/afragen/git-updater-lite/Lite.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public function run() {
113113
return new \WP_Error( 'invalid_domain', 'Invalid update server domain', $this->update_server );
114114
}
115115
$url = add_query_arg(
116-
array( 'slug', $this->slug ),
116+
array( 'slug' => $this->slug ),
117117
sprintf( '%s/wp-json/git-updater/v1/update-api/', $this->update_server )
118118
);
119119
$response = get_site_transient( "git-updater-lite_{$this->file}" );

0 commit comments

Comments
 (0)