Skip to content

Commit

Permalink
Merge branch 'release/1.1.3' into v1
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Welch committed Jun 29, 2022
2 parents c97c99b + 10def47 commit 9beb443
Show file tree
Hide file tree
Showing 4 changed files with 463 additions and 452 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# iCalendar Changelog

## 1.1.3 - 2022.06.29
### Changed
* Bump `johngrogg/ics-parser` to `^3.0.0` ([#32](https://github.com/nystudio107/craft-icalendar/issues/32))

## 1.1.2 - 2021.10.10
### Fixed
* Fixed an issue where paragraphs coming from a rich text field would be broken into multiple lines, and then not read by iCal ([#26](https://github.com/nystudio107/craft-icalendar/issues/26))
Expand Down
84 changes: 42 additions & 42 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
{
"name": "nystudio107/craft-icalendar",
"description": "Tools for parsing & formatting the RFC 2445 iCalendar (.ics) specification",
"type": "craft-plugin",
"version": "1.1.2",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"icalendar"
],
"support": {
"docs": "https://nystudio107.com/plugins/icalendar/documentation",
"issues": "https://nystudio107.com/plugins/icalendar/support"
},
"license": "MIT",
"authors": [
{
"name": "nystudio107",
"homepage": "https://nystudio107.com"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"johngrogg/ics-parser": "^2.1.0"
},
"autoload": {
"psr-4": {
"nystudio107\\icalendar\\": "src/"
}
},
"extra": {
"name": "iCalendar",
"handle": "icalendar",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/nystudio107/craft-icalendar/v1/CHANGELOG.md",
"components": {
"convert": "nystudio107\\icalendar\\services\\Convert",
"parse": "nystudio107\\icalendar\\services\\Parse"
},
"class": "nystudio107\\icalendar\\ICalendar"
"name": "nystudio107/craft-icalendar",
"description": "Tools for parsing & formatting the RFC 2445 iCalendar (.ics) specification",
"type": "craft-plugin",
"version": "1.1.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"icalendar"
],
"support": {
"docs": "https://nystudio107.com/plugins/icalendar/documentation",
"issues": "https://nystudio107.com/plugins/icalendar/support"
},
"license": "MIT",
"authors": [
{
"name": "nystudio107",
"homepage": "https://nystudio107.com"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"johngrogg/ics-parser": "^3.0.0"
},
"autoload": {
"psr-4": {
"nystudio107\\icalendar\\": "src/"
}
},
"extra": {
"name": "iCalendar",
"handle": "icalendar",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/nystudio107/craft-icalendar/v1/CHANGELOG.md",
"components": {
"convert": "nystudio107\\icalendar\\services\\Convert",
"parse": "nystudio107\\icalendar\\services\\Parse"
},
"class": "nystudio107\\icalendar\\ICalendar"
}
}
Loading

0 comments on commit 9beb443

Please sign in to comment.