Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make c2a-core repository as cargo workspace #34

Merged
merged 2 commits into from
Aug 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
[workspace.package]
version = "3.10.0"

[workspace]
resolver = "2"

members = [
]

[package]
name = "c2a-core"
version = "3.10.0"
version.workspace = true
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

workspace.package をとってくる,という意

edition = "2021"

links = "c2a-core"
Expand Down
2 changes: 1 addition & 1 deletion docs/general/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

1. バージョン番号をインクリメントする PR (Pull Request) を発行し,`develop` ブランチへマージする.
- [c2a_core_main.h](https://github.com/arkedge/c2a-core/blob/develop/c2a_core_main.h) 内の `C2A_CORE_VER_*` をインクリメントする.
- [Cargo.toml](https://github.com/arkedge/c2a-core/blob/develop/Cargo.toml) 内の `package.version` をインクリメントする.
- [Cargo.toml](https://github.com/arkedge/c2a-core/blob/develop/Cargo.toml) 内の `workspace.package.version` をインクリメントする.
- この後リリースを控えるので,念の為すべてのテストを再度回す.
- `#define C2A_CORE_VER_PRE` は `("")` とする.
- PR 名は `Update version (v3.4.0)` のようにする.
Expand Down