Skip to content

Commit

Permalink
Update CHANGELOG and bump composer for release
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmacwhite committed Jun 2, 2022
1 parent 7f19cd7 commit 75a19e3
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.

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

## 2.0.2 - 2022-06-02
### Added
- Craft 2 fieldtype migration
- Multiline support on table rows
- Add a log message when plugin is initialised for debug

### Fixed
- Replaced deprecated `renderTemplateMacro()` usage for edit field settings.

## 2.0.1 - 2018-07-06
### Fixed
- Fixed an error caused by deleting a column when there are multiple columns and the deleted column is not the last one.

## 2.0.0 - 2018-04-12
### Added
- Initial Craft CMS 3 release
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ As this is a fork, trying to install this through the usual composer require met
]
```

You can then require the package, but make sure to add dev-master after it. This repository is not using tags/releases and hence without this, composer will favour the original plugin.
You can then require the package as normal.

```sh
composer require supercool/tablemaker dev-master
composer require supercool/tablemaker
```

## Table Maker Overview
Expand Down
12 changes: 8 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "supercool/tablemaker",
"description": "A user-definable table field type for Craft CMS",
"type": "craft-plugin",
"version": "2.0.1",
"version": "2.0.2",
"keywords": [
"craft",
"cms",
Expand All @@ -13,14 +13,18 @@
"supercool"
],
"support": {
"docs": "https://github.com/supercool/tablemaker/blob/master/README.md",
"issues": "https://github.com/supercool/tablemaker/issues"
"docs": "https://github.com/nottinghamcollege/tablemaker/blob/master/README.md",
"issues": "https://github.com/nottinghamcollege/tablemaker/issues"
},
"license": "MIT",
"authors": [
{
"name": "Supercool Ltd",
"homepage": "http://www.supercooldesign.co.uk/"
},
{
"name": "Nottingham College",
"homepage": "https://www.nottinghamcollege.ac.uk"
}
],
"require": {
Expand All @@ -37,7 +41,7 @@
"schemaVersion": "1.0.0",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/supercool/tablemaker/master/CHANGELOG.md",
"changelogUrl": "https://raw.githubusercontent.com/nottinghamcollege/tablemaker/master/CHANGELOG.md",
"class": "supercool\\tablemaker\\TableMaker"
}
}

0 comments on commit 75a19e3

Please sign in to comment.