Skip to content

Commit 1269cad

Browse files
committed
Merge pull request #59 from thinreports/release-0.9.0
Release 0.9.0
2 parents 17ea011 + ccdc0ef commit 1269cad

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

doc/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
## 0.8.2
1+
## 0.9.0
2+
3+
* New format for layout file #56
4+
* Drop support for layout file created with v0.7 or lower
5+
* Release only ChromeApp ver from this version
6+
7+
## 0.8.2
28

39
* Support Brazillian Portuguese locale #48
410
* Show description of Base Format in Tooltip #52

src/app/layout/layout.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ goog.require('thin.Compatibility');
2525
* @enum {Array.<Array>}
2626
*/
2727
thin.layout.CompatibilityRule = {
28-
ALL: [['>=', '0.7.0'], ['<', thin.getNextMajorVersion()]],
29-
COMPLETE: [['>=', '0.7.0'], ['<=', thin.getVersion()]],
28+
ALL: [['>=', '0.8.0'], ['<', thin.getNextMajorVersion()]],
29+
COMPLETE: [['>=', '0.8.0'], ['<=', thin.getVersion()]],
3030
WARNING: [['>', thin.getVersion()], ['<', thin.getNextMajorVersion()]]
3131
};
3232

src/app/version.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ thin.Version.MAJOR = 0;
2727
/**
2828
* @type {number}
2929
*/
30-
thin.Version.MINOR = 8;
30+
thin.Version.MINOR = 9;
3131

3232

3333
/**
3434
* @type {number}
3535
*/
36-
thin.Version.TINY = 2;
36+
thin.Version.TINY = 0;
3737

3838

3939
/**

src/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"name": "Thinreports Editor",
4-
"version": "0.8.2",
4+
"version": "0.9.0",
55
"description": "The Official Report Designer for Thinreports, an open source report generation tool for Ruby.",
66
"author": "Thinreports.org",
77
"icons": {

0 commit comments

Comments
 (0)