Skip to content

Commit 993e6ab

Browse files
committed
Bump version 0.18.5
1 parent d6a1fe0 commit 993e6ab

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@accountingapp/backend",
3-
"version": "0.18.4",
3+
"version": "0.18.5",
44
"description": "",
55
"author": "",
66
"private": true,

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@accountingapp/web",
3-
"version": "0.18.4",
3+
"version": "0.18.5",
44
"private": true,
55
"scripts": {
66
"lint": "next lint",

frontend/src/records/services/RecordsApi.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export class RecordsApiService implements RecordsApi {
1818
return BASE_API.delete(`${ApiRoutes.RECORDS}/${recordId}`);
1919
}
2020
editRecord(record: RecordDto): Promise<RecordDto> {
21+
console.log(record);
2122
return BASE_API.put<RecordDto, RecordDto>(
2223
`${ApiRoutes.RECORDS}/${record.id}`,
2324
record

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "accountingapp",
3-
"version": "0.18.4",
3+
"version": "0.18.5",
44
"description": "Accounting App is a project which helps to keep an overview of balances of personal wallets.",
55
"main": "index.js",
66
"scripts": {

shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@accountingapp/shared",
3-
"version": "0.18.4",
3+
"version": "0.18.5",
44
"scripts": {
55
"prebuild": "rimraf dist",
66
"build": "npm run build:esm && npm run build:cjs",

0 commit comments

Comments
 (0)