Skip to content

Commit

Permalink
bump: 0.18.0 -> 0.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eri24816 committed Jun 27, 2024
1 parent 7aa6d9b commit 6b2d8c9
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion backend/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "grapycal"
version = "0.18.0"
version = "0.18.1"
description = "A highly interactive visual programming language"
authors = [
"eri24816 <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion backend/src/grapycal/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.18.0"
__version__ = "0.18.1"
from grapycal.utils.resource import get_resource
from objectsync import (
DictTopic,
Expand Down
2 changes: 1 addition & 1 deletion electron/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ const createWindow = (port) => {
syncInterpreterListWithMenu()
app.setAboutPanelOptions({
applicationName: 'Grapycal',
applicationVersion: '0.18.0',
applicationVersion: '0.18.1',
copyright: 'Grapycal Team',
iconPath: path.join(__dirname, 'frontend', 'dist', 'icon.png').replace("app.asar", "app.asar.unpacked")
})
Expand Down
4 changes: 2 additions & 2 deletions electron/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 electron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Grapycal",
"version": "0.18.0",
"version": "0.18.1",
"main": "main.js",
"description": "A visual programming language based on Python",
"author": {
Expand Down
4 changes: 2 additions & 2 deletions frontend/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 frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "grapycal-client",
"version": "0.18.0",
"version": "0.18.1",
"main": "app.ts",
"devDependencies": {
"@web/dev-server": "^0.1.35",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const LIB_VERSION = "0.18.0";
export const LIB_VERSION = "0.18.1";

0 comments on commit 6b2d8c9

Please sign in to comment.