Skip to content

Commit

Permalink
[Release] v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zjp-CN committed Feb 20, 2023
1 parent 43ff61d commit 8b16ad0
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## v0.3.0 (2023-02-20)

- 更新依赖
- clippy fix
- 改动 features
- 命令行工具
- 从 clickhouse 获取 factor.csv 之后自动删除它
- 东财数据默认 6000 条

## [bin-v0.1.4](https://github.com/zjp-CN/rustdx/tree/bin-v0.1.4) (2021-12-01)

[Full Changelog](https://github.com/zjp-CN/rustdx/compare/v0.2.4.beta1...bin-v0.1.4)
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

8 changes: 6 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
[package]
name = "rustdx"
version = "0.2.5"
version = "0.3.0"
edition = "2018"
license = "MIT"
description = "受 pytdx 启发的 A 股数据获取库"
repository = "https://github.com/zjp-CN/rustdx"
authors = ["zjp <[email protected]>"]
exclude = ["assets", "examples", "benches", "tests", "old", "./CHANGELOG.md", "*.csv", "*.log"]
exclude = [
"assets", "examples", "benches", "tests", "old",
"CHANGELOG.md", "*.csv", "*.log", ".github", ".gitignore",
"rustfmt.toml", "LICENSE"
]

[dependencies]
chrono = {version = "0.4", optional = true}
Expand Down
9 changes: 6 additions & 3 deletions rustdx-cmd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
[package]
name = "rustdx-cmd"
version = "0.1.5"
version = "0.3.0"
edition = "2018"
license = "MIT"
build = "build.rs"
readme = "../README.md"
description = "受 pytdx 启发的 A 股数据获取库"
repository = "https://github.com/zjp-CN/rustdx"
authors = ["zjp <[email protected]>"]
exclude = ["assets", "examples", "benches", "tests", "rustdx.log", "*.csv"]
exclude = [
"assets", "examples", "benches", "tests", "rustdx.log", "*.csv",
"LICENSE-MIT", "rustfmt.toml"
]

[dependencies]
anyhow = "1"
Expand All @@ -30,7 +33,7 @@ simplelog = {version ="0.12", optional = true}
miniz_oxide = {version ="0.7", optional = true}

[dependencies.rustdx]
version = "0.2.5"
version = "0.3.0"
optional = true
path = "../"
default-features = false
Expand Down

0 comments on commit 8b16ad0

Please sign in to comment.