Skip to content

Commit

Permalink
13.1.1 fix for release date and change tracking
Browse files Browse the repository at this point in the history
  • Loading branch information
obiot committed Aug 9, 2022
1 parent 1760db9 commit 7942338
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 12 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog

## [13.1.0] (melonJS 2) - _2022-xx-xx_
## [13.1.1] (melonJS 2) - _2022-08-10_

### Fixed
- Release date and version/change tracking

## [13.1.0] (melonJS 2) - _2022-08-10_

### Added
- Color: added a `setHSL(h, s, l)` and `setHSV(h, s, v)` method to the Color class
Expand Down Expand Up @@ -1277,6 +1282,8 @@
- first public version with alex4 !
- www.melonjs.org is live :)

[13.1.1]: https://github.com/melonjs/melonJS/compare/13.1.1...13.1.0
[13.1.0]: https://github.com/melonjs/melonJS/compare/13.1.0...13.0.0
[13.0.0]: https://github.com/melonjs/melonJS/compare/13.0.0...12.0.0
[12.0.0]: https://github.com/melonjs/melonJS/compare/12.0.0...11.0.0
[11.0.0]: https://github.com/melonjs/melonJS/compare/10.12.0...11.0.0
Expand Down
8 changes: 4 additions & 4 deletions dist/melonjs.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v13.1.0
* melonJS Game Engine - v13.1.1
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down Expand Up @@ -33105,10 +33105,10 @@
* this can be overridden by the plugin
* @public
* @type {string}
* @default "13.1.0"
* @default "13.1.1"
* @name plugin.Base#version
*/
this.version = "13.1.0";
this.version = "13.1.1";
};

/**
Expand Down Expand Up @@ -37802,7 +37802,7 @@
* @name version
* @type {string}
*/
var version = "13.1.0";
var version = "13.1.1";


/**
Expand Down
4 changes: 2 additions & 2 deletions dist/melonjs.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/melonjs.module.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* melonJS Game Engine - v13.1.0
* melonJS Game Engine - v13.1.1
* http://www.melonjs.org
* melonjs is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license
Expand Down Expand Up @@ -33010,10 +33010,10 @@ class BasePlugin {
* this can be overridden by the plugin
* @public
* @type {string}
* @default "13.1.0"
* @default "13.1.1"
* @name plugin.Base#version
*/
this.version = "13.1.0";
this.version = "13.1.1";
}
}

Expand Down Expand Up @@ -37822,7 +37822,7 @@ Renderer.prototype.getScreenContext = function() {
* @name version
* @type {string}
*/
const version = "13.1.0";
const version = "13.1.1";


/**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "melonjs",
"version": "13.1.0",
"version": "13.1.1",
"description": "melonJS Game Engine",
"homepage": "http://www.melonjs.org/",
"keywords": [
Expand Down

0 comments on commit 7942338

Please sign in to comment.