Skip to content

Commit

Permalink
bump version to v0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yifanwww committed Sep 1, 2023
1 parent 20f8ab0 commit 4e494f4
Show file tree
Hide file tree
Showing 8 changed files with 41 additions and 7 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,38 @@
# CHANGELOG
## template-electron-react v0.13.0 (2023-09-01)
### Features

- Add assertion utils separately for main and renderer
For electron main process, it's better to use node assertion module, the only customized assertion util is `assertIsNever`
- Add application logger `AppLogger`, logs will be stored in `<userData>/logs` folder in `app-<time>.log` file format
- Use `esbuild` to transpile app-main code

### Notable Changes

- No customized window id
- Add `lint:fix` NPM script
- Import router stuff directly from `react-router-dom`
- Make `@ter/scripts` a pure-esm package
- Upgrade Electron to v26.0.0
- Apply stricter tsconfig on vite.config.ts, do typecheck for it

### Dependency Changes

- Add
- `@types/lodash` v4.14.197
- `dayjs` v1.11.9
- `esbuild-loader` v4.0.2
- `lodash` v4.17.21
- `winston` v3.10.0
- Upgrade
- `concurrently` v7.6.0 -> v8.2.1
- `electron` v24.5.0 -> v26.0.0
- `rimraf` v3.0.2 -> v5.0.1
- Remove
- `babel-loader` v9.1.3
- `react-router` v6.13.0
- `terser-webpack-plugin` v5.3.9

## template-electron-react v0.12.0 (2023-08-12)
### Breaking Changes

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ter",
"version": "0.12.0",
"version": "0.13.0",
"description": "A template project for developing electron application, using react and typescript.",
"main": "build/electron.js",
"homepage": "https://github.com/YSoftwareRepo/template-electron-react#readme",
Expand Down
2 changes: 1 addition & 1 deletion packages/app-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ter/app-common",
"version": "0.12.0",
"version": "0.13.0",
"description": "Common code for electron main process and electron renderer process.",
"homepage": "https://github.com/YSoftwareRepo/template-electron-react#readme",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/app-main/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ter/app-main",
"version": "0.12.0",
"version": "0.13.0",
"description": "Electron main process code.",
"homepage": "https://github.com/YSoftwareRepo/template-electron-react#readme",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/app-renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ter/app-renderer",
"version": "0.12.0",
"version": "0.13.0",
"description": "Electron renderer process code.",
"homepage": "https://github.com/YSoftwareRepo/template-electron-react#readme",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ter/eslint-config",
"version": "0.12.0",
"version": "0.13.0",
"description": "ESLint configurations for ter.",
"homepage": "https://github.com/YSoftwareRepo/template-electron-react#readme",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/scripts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ter/scripts",
"version": "0.12.0",
"version": "0.13.0",
"description": "Scripts for ter.",
"type": "module",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion packages/tsconfigs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ter/tsconfigs",
"version": "0.12.0",
"version": "0.13.0",
"description": "Typescript configurations for ter.",
"homepage": "https://github.com/YSoftwareRepo/template-electron-react#readme",
"license": "MIT",
Expand Down

0 comments on commit 4e494f4

Please sign in to comment.