Skip to content

Commit e5fe7c3

Browse files
authored
release: add 0.1.19 tag (#574)
## 📝 Pull Request Template ### 1. Related Issue Closes # (issue number) ### 2. Type of Change (select one) Type of Change: Bug Fix / New Feature / Code Refactor / Documentation Update / Other: __________ ### 3. Description Please describe the changes made and why they are necessary. ### 4. Testing - [ ] I have tested this locally. - [ ] I have updated or added relevant tests. ### 5. Checklist - [ ] I have read the [Code of Conduct](./CODE_OF_CONDUCT.md) - [ ] I have followed the [Contributing Guidelines](./CONTRIBUTING.md) - [ ] My changes follow the project's coding style
1 parent 2233043 commit e5fe7c3

3 files changed

Lines changed: 21 additions & 45 deletions

File tree

frontend/src-tauri/tauri.conf.json

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "ValueCell",
4-
"version": "0.1.18",
4+
"version": "0.1.19",
55
"identifier": "com.valuecell.valuecellapp",
66
"build": {
77
"beforeDevCommand": "bun run dev:tauri",
@@ -10,12 +10,14 @@
1010
"frontendDist": "../build/client"
1111
},
1212
"app": {
13-
"windows": [{
14-
"title": "ValueCell",
15-
"minWidth": 1300,
16-
"minHeight": 780,
17-
"hiddenTitle": true
18-
}],
13+
"windows": [
14+
{
15+
"title": "ValueCell",
16+
"minWidth": 1300,
17+
"minHeight": 780,
18+
"hiddenTitle": true
19+
}
20+
],
1921
"security": {
2022
"csp": null
2123
}

python/pyproject.toml

Lines changed: 10 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "valuecell"
7-
version = "0.1.18"
7+
version = "0.1.19"
88
description = "ValueCell is a community-driven, multi-agent platform for financial applications."
99
readme = "README.md"
1010
requires-python = ">=3.12"
@@ -44,17 +44,12 @@ dev = [
4444

4545
[dependency-groups]
4646
dev = [
47-
{include-group = "lint"},
48-
{include-group = "style"},
49-
{include-group = "test"}
50-
]
51-
lint = [
52-
"ruff"
53-
]
54-
style = [
55-
"ruff",
56-
"isort",
47+
{ include-group = "lint" },
48+
{ include-group = "style" },
49+
{ include-group = "test" },
5750
]
51+
lint = ["ruff"]
52+
style = ["ruff", "isort"]
5853
test = [
5954
"pytest>=7.4.0",
6055
"pytest-cov>=4.1.0",
@@ -67,13 +62,7 @@ line-length = 88
6762
indent-width = 4
6863
target-version = "py312"
6964
force-exclude = true
70-
exclude = [
71-
"venv",
72-
"build",
73-
"dist",
74-
"node_modules",
75-
"site-packages",
76-
]
65+
exclude = ["venv", "build", "dist", "node_modules", "site-packages"]
7766

7867
[tool.ruff.format]
7968
quote-style = "double"
@@ -82,9 +71,7 @@ skip-magic-trailing-comma = false
8271
line-ending = "auto"
8372

8473
[tool.hatch.build.targets.wheel]
85-
include = [
86-
"valuecell",
87-
]
74+
include = ["valuecell"]
8875
exclude = [
8976
"tests/**",
9077
"**/tests/**",
@@ -95,21 +82,8 @@ exclude = [
9582
]
9683

9784
[tool.pytest.ini_options]
98-
norecursedirs = [
99-
".venv",
100-
"venv",
101-
"build",
102-
"dist",
103-
"logs",
104-
"examples",
105-
"docs",
106-
]
85+
norecursedirs = [".venv", "venv", "build", "dist", "logs", "examples", "docs"]
10786

10887
[tool.isort]
10988
profile = "black"
110-
skip_glob = [
111-
"tests/**",
112-
"**/tests/**",
113-
"docs/**",
114-
"**/docs/**",
115-
]
89+
skip_glob = ["tests/**", "**/tests/**", "docs/**", "**/docs/**"]

python/uv.lock

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

0 commit comments

Comments
 (0)