Skip to content

Commit

Permalink
update version string for components
Browse files Browse the repository at this point in the history
  • Loading branch information
markjszy committed Aug 31, 2022
1 parent fb93ba8 commit f2cad5b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion scripts/lib/components/InstallmentsGenerator.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const DEFAULT_PAYMENT_SCHEDULE_TO_INCREMENT = {
}

class InstallmentsGenerator {
VERSION = '1.0';
VERSION = '1.1';

data;
dateCalc;
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/components/PostIssuanceConsolidator.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const DEFAULT_OPTIONS = {
}

class PostIssuanceConsolidator {
VERSION = '1.0';
VERSION = '1.1';

constructor(data, options = {}) {
this.data = data;
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/components/PostPaymentReversalGraceAdjuster.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const { DateCalc } = require('../utils/DateCalc.js');
const ONE_DAY_MILLIS = 24 * 60 * 60 * 1000;

class PostPaymentReversalGraceAdjuster {
VERSION = '1.0';
VERSION = '1.1';

constructor(data) {
this.data = data;
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/components/PreGraceAdjuster.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const DEFAULT_OPTIONS = {
}

class PreGraceAdjuster {
VERSION = '1.0';
VERSION = '1.1';

constructor(data, options = {}) {
this.data = data;
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/components/Prorater.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const { roundMoney } = require('../../main/common-options.js').options;
const { durationCalcMethod } = require('../utils/utils.js');

class Prorater {
VERSION = '1.0';
VERSION = '1.1';

constructor(data) {
this.data = data;
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/components/Rater.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const { durationCalcMethod } = require('../utils/utils.js');
const { roundMoney } = require('../../main/common-options.js').options;

class Rater {
VERSION = '1.0';
VERSION = '1.1';

constructor(data) {
this.data = data;
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/components/Underwriter.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require("../utils/arrays.js");
const { PolicyContext } = require("../utils/PolicyContext.js");

class Underwriter {
VERSION = '1.0';
VERSION = '1.1';

constructor(data) {
this.data = data;
Expand Down

0 comments on commit f2cad5b

Please sign in to comment.