Skip to content

Commit 96b42f1

Browse files
committed
version bump
1 parent 7f16af7 commit 96b42f1

File tree

6 files changed

+15
-7
lines changed

6 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## 1.1.2 - 2019-11-07
8+
> {warning} Since v1.1, Crumb titles are now generated from the following fields in order of priority 1) customFieldHandle, 2) title, 3) URL segment
9+
10+
> {warning} Since v1.1, Crumbs generated from a URL segment will no longer appear capitalized. Please use CSS text-transform if you want to capitalize crumb titles
11+
12+
### Fixed
13+
- Missing v1.1.0 changelog notes
14+
715
## 1.1.1 - 2019-11-07
816
> {warning} Since v1.1, Crumb titles are now generated from the following fields in order of priority 1) customFieldHandle, 2) title, 3) URL segment
917
@@ -12,7 +20,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1220
### Added
1321
- Date to changelog for 1.1 release
1422

15-
## 1.1 - 2019-11-07
23+
## 1.1.0 - 2019-11-07
1624
> {warning} Crumb titles are now generated from the following fields in order of priority 1) customFieldHandle, 2) title, 3) URL segment
1725
1826
> {warning} Crumbs generated from a URL segment will no longer appear capitalized. Please use CSS text-transform if you want to capitalize crumb titles

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "youandmedigital/breadcrumb",
33
"description": "Generate a simple breadcrumb",
44
"type": "craft-plugin",
5-
"version": "1.1.1",
5+
"version": "1.1.2",
66
"keywords": [
77
"craft",
88
"cms",

src/Breadcrumb.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*
2626
* @author You & Me Digital
2727
* @package Breadcrumb
28-
* @since 1.1.1
28+
* @since 1.1.2
2929
*
3030
* @property BreadcrumbServiceService $breadcrumbService
3131
*/
@@ -39,7 +39,7 @@ class Breadcrumb extends Plugin
3939
// Public Properties
4040
// =========================================================================
4141

42-
public $schemaVersion = '1.1.1';
42+
public $schemaVersion = '1.1.2';
4343

4444
// Public Methods
4545
// =========================================================================

src/services/BreadcrumbService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*
2323
* @author You & Me Digital
2424
* @package Breadcrumb
25-
* @since 1.1.1
25+
* @since 1.1.2
2626
*/
2727
class BreadcrumbService extends Component
2828
{

src/translations/en/breadcrumb.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*
1919
* @author You & Me Digital
2020
* @package Breadcrumb
21-
* @since 1.1.1
21+
* @since 1.1.2
2222
*/
2323
return [
2424
'Breadcrumb plugin loaded' => 'Breadcrumb plugin loaded',

src/variables/BreadcrumbVariable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*
2525
* @author You & Me Digital
2626
* @package Breadcrumb
27-
* @since 1.1.1
27+
* @since 1.1.2
2828
*/
2929
class BreadcrumbVariable
3030
{

0 commit comments

Comments
 (0)