Skip to content

Commit

Permalink
Prepare for release 1.5.0
Browse files Browse the repository at this point in the history
We now follow Semantic Versioning specification.
  • Loading branch information
dregad committed Mar 24, 2017
1 parent 8824f24 commit 72e75f4
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 4 deletions.
24 changes: 22 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,30 @@
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/).
and this project adheres to [Semantic Versioning](http://semver.org/)
specification.


## [1.5.0] - 2017-03-25

### Added
- Support for MantisBT 1.3.x, thanks to @bkraul
- Licensed under GNU GPL v3

### Changed
- Version numbering now follows Semantic Versioning specification

### Removed
- Support for MantisBT 1.2.x

### Fixed
- Use plugin API to retrieve language strings


## [1.04] - 2015-10-17

This is the latest release with support for MantisBT 1.2.x.

### Added
- German translation by Roman Allenstein

Expand Down Expand Up @@ -47,7 +66,8 @@ Maintenance release by Cas Nuy
MantisBT [issue 11615](https://mantisbt.org/bugs/view.php?id=11615)


[Unreleased]: https://github.com/mantisbt-plugins/CustomReporter/compare/v1.04...HEAD
[Unreleased]: https://github.com/mantisbt-plugins/CustomReporter/compare/v1.5.0...HEAD
[1.5.0]: https://github.com/mantisbt-plugins/CustomReporter/compare/v1.04...v1.5.0
[1.04]: https://github.com/mantisbt-plugins/CustomReporter/compare/v1.03...v1.04
[1.03]: https://github.com/mantisbt-plugins/CustomReporter/compare/v1.02...v1.03
[1.02]: https://github.com/mantisbt-plugins/CustomReporter/compare/v1.01...v1.02
Expand Down
2 changes: 1 addition & 1 deletion CustomReporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function register() {
$this->name = plugin_lang_get( 'title' );
$this->description = plugin_lang_get( 'description' );
$this->page = 'config';
$this->version = '1.04';
$this->version = '1.5.0';
$this->requires = array( 'MantisCore' => '1.3.0', );
$this->author = 'Carlos Proensa, Cas Nuy, Damien Regad';
$this->contact = '[email protected]';
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ See the [Change log](CHANGELOG.md).

### Requirements

The plugin requires MantisBT version 1.2.0 or later.
The plugin requires MantisBT version 1.3.0 or later.

For legacy 1.2.x installations, please download
[version 1.04](https://github.com/mantisbt-plugins/CustomReporter/releases/tag/v1.04).


### Setup instructions
Expand Down

0 comments on commit 72e75f4

Please sign in to comment.