Skip to content

Commit

Permalink
update version and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
billerickson committed Jan 16, 2017
1 parent e4747f3 commit db14fd3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,15 @@
# Change Log
All notable changes to this project will be documented in this file, formatted via [this recommendation](http://keepachangelog.com/).

## [1.3.2] - 2017-01-16
### Added
- Filter for recurring post type args, `be_events_manager_recurring_post_type_args`

### Fixed
- Debug error if no date is specified for an event, see #23
- Javascript bug in event calendar widget, see #25
- Display all events on calendar widget, see #25

## [1.3.1] - 2016-09-05
### Changed
- Specify date format since WordPress changed the defaults, see #21
Expand Down Expand Up @@ -32,4 +41,4 @@ All notable changes to this project will be documented in this file, formatted v

### Changed
- Docblocks to be more descriptive and accurate
- File structure to better accomodate future expansion
- File structure to better accomodate future expansion
6 changes: 3 additions & 3 deletions be-events-calendar.php
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: BE Events Calendar
* Description: Allows you to manage events.
* Version: 1.3.1
* Version: 1.3.2
* Author: Bill Erickson
*
* This program is free software; you can redistribute it and/or modify it under
Expand All @@ -28,7 +28,7 @@
}

// Define plugin constants
define( 'BE_EVENTS_CALENDAR_VERSION', '1.3.1' );
define( 'BE_EVENTS_CALENDAR_VERSION', '1.3.2' );
define( 'BE_EVENTS_CALENDAR_DIR', plugin_dir_path( __FILE__ ) );
define( 'BE_EVENTS_CALENDAR_URL', plugin_dir_url( __FILE__ ) );
define( 'BE_EVENTS_CALENDAR_FILE', __FILE__ );
Expand All @@ -39,4 +39,4 @@
require_once BE_EVENTS_CALENDAR_DIR . 'inc/widget-upcoming-events.php';
require_once BE_EVENTS_CALENDAR_DIR . '/inc/widget-calendar.php';
require_once BE_EVENTS_CALENDAR_DIR . 'inc/genesis-schema.php';
require_once BE_EVENTS_CALENDAR_DIR . 'inc/view-calendar.php';
require_once BE_EVENTS_CALENDAR_DIR . 'inc/view-calendar.php';

0 comments on commit db14fd3

Please sign in to comment.