Version Bump v5.3.0
This commit is contained in:
parent
4f5ba47d46
commit
5a73387404
@ -1 +1 @@
|
||||
__version__ = "5.2.0"
|
||||
__version__ = "5.3.0"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "barker"
|
||||
version = "5.2.0"
|
||||
version = "5.3.0"
|
||||
description = "Point of Sale for a restaurant"
|
||||
authors = ["tanshu <git@tanshu.com>"]
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "bookie",
|
||||
"version": "5.2.0",
|
||||
"version": "5.3.0",
|
||||
"scripts": {
|
||||
"ng": "ng",
|
||||
"start": "ng serve",
|
||||
@ -14,18 +14,18 @@
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@angular/animations": "^11.0.3",
|
||||
"@angular/animations": "^11.0.4",
|
||||
"@angular/cdk": "^11.0.1",
|
||||
"@angular/common": "^11.0.3",
|
||||
"@angular/compiler": "^11.0.3",
|
||||
"@angular/core": "^11.0.3",
|
||||
"@angular/common": "^11.0.4",
|
||||
"@angular/compiler": "^11.0.4",
|
||||
"@angular/core": "^11.0.4",
|
||||
"@angular/flex-layout": "^11.0.0-beta.33",
|
||||
"@angular/forms": "^11.0.3",
|
||||
"@angular/forms": "^11.0.4",
|
||||
"@angular/material": "^11.0.1",
|
||||
"@angular/material-moment-adapter": "^11.0.1",
|
||||
"@angular/platform-browser": "^11.0.3",
|
||||
"@angular/platform-browser-dynamic": "^11.0.3",
|
||||
"@angular/router": "^11.0.3",
|
||||
"@angular/platform-browser": "^11.0.4",
|
||||
"@angular/platform-browser-dynamic": "^11.0.4",
|
||||
"@angular/router": "^11.0.4",
|
||||
"mathjs": "^8.1.0",
|
||||
"moment": "^2.29.1",
|
||||
"rxjs": "^6.6.3",
|
||||
@ -33,18 +33,18 @@
|
||||
"zone.js": "^0.11.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/build-angular": "~0.1100.3",
|
||||
"@angular-eslint/builder": "^0.8.0-beta.3",
|
||||
"@angular-eslint/eslint-plugin": "^0.8.0-beta.3",
|
||||
"@angular-eslint/eslint-plugin-template": "^0.8.0-beta.3",
|
||||
"@angular-eslint/schematics": "^0.8.0-beta.3",
|
||||
"@angular-eslint/template-parser": "^0.8.0-beta.3",
|
||||
"@angular/cli": "^11.0.3",
|
||||
"@angular/compiler-cli": "^11.0.3",
|
||||
"@angular/language-service": "^11.0.3",
|
||||
"@angular-devkit/build-angular": "~0.1100.4",
|
||||
"@angular-eslint/builder": "^0.8.0-beta.5",
|
||||
"@angular-eslint/eslint-plugin": "^0.8.0-beta.5",
|
||||
"@angular-eslint/eslint-plugin-template": "^0.8.0-beta.5",
|
||||
"@angular-eslint/schematics": "^0.8.0-beta.5",
|
||||
"@angular-eslint/template-parser": "^0.8.0-beta.5",
|
||||
"@angular/cli": "^11.0.4",
|
||||
"@angular/compiler-cli": "^11.0.4",
|
||||
"@angular/language-service": "^11.0.4",
|
||||
"@types/jasmine": "~3.6.2",
|
||||
"@types/mathjs": "^6.0.8",
|
||||
"@types/node": "^14.14.10",
|
||||
"@types/mathjs": "^6.0.9",
|
||||
"@types/node": "^14.14.13",
|
||||
"@typescript-eslint/eslint-plugin": "^4.9.1",
|
||||
"@typescript-eslint/parser": "^4.9.1",
|
||||
"eslint": "^7.14.0",
|
||||
@ -52,7 +52,7 @@
|
||||
"eslint-plugin-import": "^2.22.1",
|
||||
"eslint-plugin-jsdoc": "^30.7.8",
|
||||
"eslint-plugin-prefer-arrow": "1.2.2",
|
||||
"husky": "^4.3.5",
|
||||
"husky": "^4.3.6",
|
||||
"jasmine-core": "^3.6.0",
|
||||
"jasmine-spec-reporter": "^6.0.0",
|
||||
"karma": "^5.2.3",
|
||||
@ -62,10 +62,9 @@
|
||||
"karma-jasmine-html-reporter": "^1.5.0",
|
||||
"lint-staged": "^10.5.3",
|
||||
"prettier": "^2.2.1",
|
||||
"protractor": "~7.0.0",
|
||||
"standard-version": "^9.0.0",
|
||||
"ts-node": "^9.1.1",
|
||||
"typescript": "~4.0.5"
|
||||
"typescript": "^4.1.3"
|
||||
},
|
||||
"husky": {
|
||||
"hooks": {
|
||||
|
@ -1,5 +1,5 @@
|
||||
export const environment = {
|
||||
production: true,
|
||||
ACCESS_TOKEN_REFRESH_MINUTES: 10, // refresh token 10 minutes before expiry
|
||||
version: '5.2.0',
|
||||
version: '5.3.0',
|
||||
};
|
||||
|
@ -5,7 +5,7 @@
|
||||
export const environment = {
|
||||
production: false,
|
||||
ACCESS_TOKEN_REFRESH_MINUTES: 10, // refresh token 10 minutes before expiry
|
||||
version: '5.2.0',
|
||||
version: '5.3.0',
|
||||
};
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user