Skip to content

Commit

Permalink
Bump version 0.18.5
Browse files Browse the repository at this point in the history
  • Loading branch information
proohit committed Jun 3, 2023
1 parent d6a1fe0 commit 993e6ab
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@accountingapp/backend",
"version": "0.18.4",
"version": "0.18.5",
"description": "",
"author": "",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@accountingapp/web",
"version": "0.18.4",
"version": "0.18.5",
"private": true,
"scripts": {
"lint": "next lint",
Expand Down
1 change: 1 addition & 0 deletions frontend/src/records/services/RecordsApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export class RecordsApiService implements RecordsApi {
return BASE_API.delete(`${ApiRoutes.RECORDS}/${recordId}`);
}
editRecord(record: RecordDto): Promise<RecordDto> {
console.log(record);
return BASE_API.put<RecordDto, RecordDto>(
`${ApiRoutes.RECORDS}/${record.id}`,
record
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "accountingapp",
"version": "0.18.4",
"version": "0.18.5",
"description": "Accounting App is a project which helps to keep an overview of balances of personal wallets.",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@accountingapp/shared",
"version": "0.18.4",
"version": "0.18.5",
"scripts": {
"prebuild": "rimraf dist",
"build": "npm run build:esm && npm run build:cjs",
Expand Down

0 comments on commit 993e6ab

Please sign in to comment.