Skip to content

Commit

Permalink
Update readme and versions
Browse files Browse the repository at this point in the history
  • Loading branch information
joedolson committed Nov 21, 2024
1 parent ae0a144 commit 6e788c9
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 7 deletions.
2 changes: 1 addition & 1 deletion init.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* License: GPL-2.0+
* License URI: http://www.gnu.org/license/gpl-2.0.txt
* Domain Path: lang
* Version: 3.5.19
* Version: 3.5.20
*/

/*
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "my-calendar",
"version": "3.5.19",
"version": "3.5.20",
"private": true,
"description": "My Calendar WordPress plug-in.",
"author": "Joe Dolson",
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Accessible Event Manager for WordPress
* Requires at least: 4.9
* Tested up to: 6.6
* Requires PHP: 7.4
* Stable tag: `3.5.19`
* Stable tag: `3.5.20`
* License: GPLv2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down
4 changes: 2 additions & 2 deletions src/my-calendar.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* License: GPL-2.0+
* License URI: http://www.gnu.org/license/gpl-2.0.txt
* Domain Path: lang
* Version: 3.5.19
* Version: 3.5.20
*/

/*
Expand Down Expand Up @@ -54,7 +54,7 @@ function mc_get_version( $version = true ) {
if ( ! $version ) {
return get_option( 'mc_version', '' );
}
return '3.5.19';
return '3.5.20';
}

define( 'MC_DEBUG', false );
Expand Down
16 changes: 15 additions & 1 deletion src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Requires at least: 4.9
Tested up to: 6.6
Requires PHP: 7.4
Text domain: my-calendar
Stable tag: 3.5.19
Stable tag: 3.5.20
License: GPLv2 or later

Accessible WordPress event calendar plugin. Manage single or recurring events, event venues, and display your calendar anywhere on your site.
Expand Down Expand Up @@ -108,6 +108,20 @@ Translating my plugins is always appreciated. Visit <a href="https://translate.w

== Changelog ==

= 3.5.20 =

* Bug fix: Undefined foreground color in some stylesheets.
* Bug fix: Missing close `span` in SVG wrapper.
* Bug fix: Check whether `$event` is an object before accessing properties in event template check.
* Bug fix: Add missing stylesheet class in some calendar themes.
* Bug fix: Handle uncommon case where a location ID is assigned but location no longer exists.
* Bug fix: Fix incorrect parentheses that could unset recurring event instances unintentionally.
* Bug fix: Allow help links to wrap.
* Bug fix: Root event link should point to source event, not self.
* Bug fix: When splitting an event, execute the 'add' action instead of the 'edit' action to ensure post meta fields are saved correctly.
* Update social media links.
* Add class for locations to event class list.

= 3.5.19 =

* Remove textdomain loader (obsolete since WP 4.6).
Expand Down

0 comments on commit 6e788c9

Please sign in to comment.