forked from crate-ci/cargo-release
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
28 lines (25 loc) · 915 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "cargo-release"
version = "0.9.1-alpha.0"
authors = ["Ning Sun <[email protected]>"]
license = "MIT/Apache-2.0"
description = "cargo release command"
keywords = ["cargo"]
categories = ["development-tools::cargo-plugins"]
repository = "https://github.com/sunng87/cargo-release"
[dependencies]
toml = {version = "0.3.1", default-features = false}
semver = "0.6.0"
quick-error = "1.1.0"
regex = "0.2.1"
clap = "2.22.1"
ansi_term = "0.9.0"
maplit = "0.1.4"
chrono = "0.4"
[badges]
travis-ci = { repository = "sunng87/cargo-release", branch="0.9.0" }
[package.metadata.release]
sign-commit = true
#upload-doc = true
pre-release-hook = ["./hook.sh", "一", "два", "Three", "4"]
pre-release-replacements = [ {file="README.md", search="Current release: [a-z0-9\\.-]+", replace="Current release: {{version}}"} , {file ="Cargo.toml", search="branch=\"[a-z0-9\\.-]+\"", replace="branch=\"{{version}}\""} ]