summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordalance <dalance@gmail.com>2019-09-05 14:48:13 +0900
committerdalance <dalance@gmail.com>2019-09-05 14:48:13 +0900
commit2bb020f2aa9831302026d936d1c41016fa0b28b2 (patch)
tree8d1f4a54b3f91ef305dd5fe224091398695fde1c
parentcdeb3fa386768beff7387ec49cddba06a2e42695 (diff)
Prepare to v0.8.9v0.8.9
-rw-r--r--CHANGELOG.md4
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml30
-rw-r--r--README.md2
-rw-r--r--snapcraft.yaml2
5 files changed, 21 insertions, 19 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9b3be11..2ee3ad8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,8 @@
# Change Log
-## [Unreleased](https://github.com/dalance/procs/compare/v0.8.8...Unreleased) - ReleaseDate
+## [Unreleased](https://github.com/dalance/procs/compare/v0.8.9...Unreleased) - ReleaseDate
+
+## [v0.8.9](https://github.com/dalance/procs/compare/v0.8.8...v0.8.9) - 2019-09-05
* [Added] max_width/min_width option
diff --git a/Cargo.lock b/Cargo.lock
index e28f70e..225e91b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -583,7 +583,7 @@ dependencies = [
[[package]]
name = "procs"
-version = "0.8.9-pre"
+version = "0.8.9"
dependencies = [
"chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"console 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/Cargo.toml b/Cargo.toml
index eb49dc5..490fd8e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "procs"
-version = "0.8.9-pre"
+version = "0.8.9"
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/procs"
keywords = ["process"]
@@ -10,6 +10,20 @@ readme = "README.md"
description = "A modern replacement for ps"
edition = "2018"
+[package.metadata.release]
+dev-version-ext = "pre"
+pre-release-commit-message = "Prepare to v{{version}}"
+pro-release-commit-message = "Start next development iteration v{{version}}"
+tag-message = "Bump version to {{version}}"
+tag-prefix = "v"
+pre-release-replacements = [
+ {file="CHANGELOG.md", search="Unreleased", replace="v{{version}}"},
+ {file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}"},
+ {file="CHANGELOG.md", search="Change Log", replace="Change Log\n\n## [Unreleased](https://github.com/dalance/procs/compare/v{{version}}...Unreleased) - ReleaseDate"},
+ {file="README.md", search = "changelog-v[0-9\\.]+", replace = "changelog-v{{version}}" },
+ {file="snapcraft.yaml", search="version v[0-9\\.]+", replace="version v{{version}}"},
+]
+
[badges]
travis-ci = { repository = "dalance/procs" }
codecov = { repository = "dalance/procs", branch = "master", service = "github" }
@@ -50,17 +64,3 @@ users = "0.9.1"
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3.6", features = ["handleapi", "minwindef", "psapi", "securitybaseapi", "tlhelp32", "winbase", "winnt"] }
-
-[package.metadata.release]
-dev-version-ext = "pre"
-pre-release-commit-message = "Prepare to v{{version}}"
-pro-release-commit-message = "Start next development iteration v{{version}}"
-tag-message = "Bump version to {{version}}"
-tag-prefix = "v"
-pre-release-replacements = [
- {file="CHANGELOG.md", search="Unreleased", replace="v{{version}}"},
- {file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}"},
- {file="CHANGELOG.md", search="Change Log", replace="Change Log\n\n## [Unreleased](https://github.com/dalance/procs/compare/v{{version}}...Unreleased) - ReleaseDate"},
- {file="README.md", search = "changelog-v[0-9\\.]+", replace = "changelog-v{{version}}" },
- {file="snapcraft.yaml", search="version v[0-9\\.]+", replace="version v{{version}}"},
-]
diff --git a/README.md b/README.md
index 58321ea..a438f56 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@
[![Snap Status](https://build.snapcraft.io/badge/dalance/procs.svg)](https://build.snapcraft.io/user/dalance/procs)
[![codecov](https://codecov.io/gh/dalance/procs/branch/master/graph/badge.svg)](https://codecov.io/gh/dalance/procs)
-[![Changelog](https://img.shields.io/badge/changelog-v0.8.8-green.svg)](https://github.com/dalance/procs/blob/master/CHANGELOG.md)
+[![Changelog](https://img.shields.io/badge/changelog-v0.8.9-green.svg)](https://github.com/dalance/procs/blob/master/CHANGELOG.md)
[![Crates.io](https://img.shields.io/crates/v/procs.svg)](https://crates.io/crates/procs)
[![procs](https://snapcraft.io/procs/badge.svg)](https://snapcraft.io/procs)
[![homebrew](https://img.shields.io/homebrew/v/procs.svg)](https://formulae.brew.sh/formula/procs)
diff --git a/snapcraft.yaml b/snapcraft.yaml
index 9000d01..611367e 100644
--- a/snapcraft.yaml
+++ b/snapcraft.yaml
@@ -1,5 +1,5 @@
name: procs
-version: &version v0.8.8
+version: &version v0.8.9
summary: A modern replacement for ps written in Rust
description: |
procs is a tool to display process information.